diff options
author | Dan Gohman <gohman@apple.com> | 2010-09-17 00:33:43 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-09-17 00:33:43 +0000 |
commit | 2fa59799d9775e04c84f7561ff21d8fa26efc5e0 (patch) | |
tree | fdf52a444c1b93c0af454c19d968c3123aacc265 /llvm/lib/Analysis/MemDepPrinter.cpp | |
parent | 214514a43d034dc56f9adafeeda3bc628d9755e9 (diff) | |
download | bcm5719-llvm-2fa59799d9775e04c84f7561ff21d8fa26efc5e0.tar.gz bcm5719-llvm-2fa59799d9775e04c84f7561ff21d8fa26efc5e0.zip |
Add an #include of raw_ostream.h. Previously, this only compiled
because it was using Twine.h's declaration of operator<<(const Twine &).
llvm-svn: 114141
Diffstat (limited to 'llvm/lib/Analysis/MemDepPrinter.cpp')
-rw-r--r-- | llvm/lib/Analysis/MemDepPrinter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/MemDepPrinter.cpp b/llvm/lib/Analysis/MemDepPrinter.cpp index 6f75239852a..420ef65e410 100644 --- a/llvm/lib/Analysis/MemDepPrinter.cpp +++ b/llvm/lib/Analysis/MemDepPrinter.cpp @@ -16,6 +16,7 @@ #include "llvm/Support/CallSite.h" #include "llvm/Support/InstIterator.h" #include "llvm/Support/ErrorHandling.h" +#include "llvm/Support/raw_ostream.h" #include "llvm/ADT/SetVector.h" using namespace llvm; |