[llvm] r255425 - Try to appease a buildbot

David Majnemer via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 11 21:53:20 PST 2015


Author: majnemer
Date: Fri Dec 11 23:53:20 2015
New Revision: 255425

URL: http://llvm.org/viewvc/llvm-project?rev=255425&view=rev
Log:
Try to appease a buildbot

The builder complains thusly:
error C2027: use of undefined type 'llvm::raw_ostream'

Try to make it happy by including raw_ostream.h

Modified:
    llvm/trunk/lib/Analysis/EHPersonalities.cpp

Modified: llvm/trunk/lib/Analysis/EHPersonalities.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/EHPersonalities.cpp?rev=255425&r1=255424&r2=255425&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/EHPersonalities.cpp (original)
+++ llvm/trunk/lib/Analysis/EHPersonalities.cpp Fri Dec 11 23:53:20 2015
@@ -14,6 +14,7 @@
 #include "llvm/IR/Function.h"
 #include "llvm/IR/Instructions.h"
 #include "llvm/Support/Debug.h"
+#include "llvm/Support/raw_ostream.h"
 using namespace llvm;
 
 /// See if the given exception handling personality function is one that we




More information about the llvm-commits mailing list