diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-07-04 12:19:56 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-07-04 12:19:56 +0000 |
commit | eb04d9bcb4fd0007e5a2d0fa798f5e657dccb0d4 (patch) | |
tree | 93569d40cd7ac864ea31ab9913738240dc460a95 /llvm/lib/Support | |
parent | 832fa92ab6d58c17801a7a750b53f1099b0542c8 (diff) | |
download | bcm5719-llvm-eb04d9bcb4fd0007e5a2d0fa798f5e657dccb0d4.tar.gz bcm5719-llvm-eb04d9bcb4fd0007e5a2d0fa798f5e657dccb0d4.zip |
Add #include <iostream> since Value.h does not #include it any more.
llvm-svn: 14622
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/ConstantRange.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/Support/LeakDetector.cpp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/Support/ConstantRange.cpp b/llvm/lib/Support/ConstantRange.cpp index cb4be83bbd1..580ca01ac39 100644 --- a/llvm/lib/Support/ConstantRange.cpp +++ b/llvm/lib/Support/ConstantRange.cpp @@ -25,6 +25,8 @@ #include "llvm/Constants.h" #include "llvm/Instruction.h" #include "llvm/Type.h" +#include <iostream> + using namespace llvm; static ConstantIntegral *Next(ConstantIntegral *CI) { diff --git a/llvm/lib/Support/LeakDetector.cpp b/llvm/lib/Support/LeakDetector.cpp index d4e829f1d98..919f7a9c213 100644 --- a/llvm/lib/Support/LeakDetector.cpp +++ b/llvm/lib/Support/LeakDetector.cpp @@ -13,6 +13,7 @@ #include "Support/LeakDetector.h" #include "llvm/Value.h" +#include <iostream> #include <set> using namespace llvm; |