diff options
author | David Majnemer <david.majnemer@gmail.com> | 2015-12-12 05:53:20 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2015-12-12 05:53:20 +0000 |
commit | f28c52f8f7827ce551acc5213b3b080548f8963c (patch) | |
tree | 721abe8203a324139ddadee50e60f2bae225fb4a /llvm/lib/Analysis | |
parent | f052f99f08491886aed354bfd22f686123772e33 (diff) | |
download | bcm5719-llvm-f28c52f8f7827ce551acc5213b3b080548f8963c.tar.gz bcm5719-llvm-f28c52f8f7827ce551acc5213b3b080548f8963c.zip |
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
llvm-svn: 255425
Diffstat (limited to 'llvm/lib/Analysis')
-rw-r--r-- | llvm/lib/Analysis/EHPersonalities.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/EHPersonalities.cpp b/llvm/lib/Analysis/EHPersonalities.cpp index c95fcee13b8..3704d49c91d 100644 --- a/llvm/lib/Analysis/EHPersonalities.cpp +++ b/llvm/lib/Analysis/EHPersonalities.cpp @@ -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 |