aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-07-04 11:55:37 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-07-04 11:55:37 +0000
commite2fac77ad355b732da347e51234f02579da62bb6 (patch)
tree09f75982de48b0b9528cfd214c33467b3efac64d
parentdb8e515b43296b41b75c7d9f220027f2570de2b2 (diff)
downloadexternal_llvm-e2fac77ad355b732da347e51234f02579da62bb6.zip
external_llvm-e2fac77ad355b732da347e51234f02579da62bb6.tar.gz
external_llvm-e2fac77ad355b732da347e51234f02579da62bb6.tar.bz2
- #include <iostream> since its not in Value.h any more.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14617 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/VMCore/Module.cpp1
-rw-r--r--lib/VMCore/Pass.cpp1
-rw-r--r--lib/VMCore/Value.cpp1
-rw-r--r--lib/VMCore/Verifier.cpp1
4 files changed, 4 insertions, 0 deletions
diff --git a/lib/VMCore/Module.cpp b/lib/VMCore/Module.cpp
index 885a604..3f59995 100644
--- a/lib/VMCore/Module.cpp
+++ b/lib/VMCore/Module.cpp
@@ -20,6 +20,7 @@
#include "SymbolTableListTraitsImpl.h"
#include <algorithm>
#include <cstdarg>
+#include <iostream>
#include <map>
using namespace llvm;
diff --git a/lib/VMCore/Pass.cpp b/lib/VMCore/Pass.cpp
index 3aa1d13..8881329 100644
--- a/lib/VMCore/Pass.cpp
+++ b/lib/VMCore/Pass.cpp
@@ -19,6 +19,7 @@
#include "llvm/ModuleProvider.h"
#include "Support/STLExtras.h"
#include "Support/TypeInfo.h"
+#include <iostream>
#include <set>
using namespace llvm;
diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp
index f8dd186..01c7b3f 100644
--- a/lib/VMCore/Value.cpp
+++ b/lib/VMCore/Value.cpp
@@ -17,6 +17,7 @@
#include "llvm/Constant.h"
#include "Support/LeakDetector.h"
#include <algorithm>
+#include <iostream>
using namespace llvm;
//===----------------------------------------------------------------------===//
diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp
index c718f68..0215c60 100644
--- a/lib/VMCore/Verifier.cpp
+++ b/lib/VMCore/Verifier.cpp
@@ -55,6 +55,7 @@
#include "llvm/Support/InstVisitor.h"
#include "Support/STLExtras.h"
#include <algorithm>
+#include <iostream>
#include <sstream>
using namespace llvm;