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 | 954da37bb492b519f5c31dc360f2a142567e08b4 (patch) | |
tree | 09912ebacd5f394d55b9ea5e929b12e0c185fa09 /lib/CodeGen | |
parent | 8ce1da781ef6b5f927e07c51d71c738eeb4a8be3 (diff) | |
download | external_llvm-954da37bb492b519f5c31dc360f2a142567e08b4.tar.gz external_llvm-954da37bb492b519f5c31dc360f2a142567e08b4.tar.bz2 external_llvm-954da37bb492b519f5c31dc360f2a142567e08b4.zip |
Add #include <iostream> since Value.h does not #include it any more.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14622 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/InstrSched/InstrScheduling.cpp | 1 | ||||
-rw-r--r-- | lib/CodeGen/InstrSched/SchedGraph.cpp | 1 | ||||
-rw-r--r-- | lib/CodeGen/InstrSched/SchedGraphCommon.cpp | 1 | ||||
-rw-r--r-- | lib/CodeGen/InstrSched/SchedPriorities.cpp | 1 | ||||
-rw-r--r-- | lib/CodeGen/IntrinsicLowering.cpp | 2 | ||||
-rw-r--r-- | lib/CodeGen/MachineBasicBlock.cpp | 1 | ||||
-rw-r--r-- | lib/CodeGen/MachineCodeEmitter.cpp | 2 | ||||
-rw-r--r-- | lib/CodeGen/MachineFunction.cpp | 1 | ||||
-rw-r--r-- | lib/CodeGen/MachineInstr.cpp | 2 | ||||
-rw-r--r-- | lib/CodeGen/SelectionDAG/DAGBuilder.cpp | 2 | ||||
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
11 files changed, 16 insertions, 0 deletions
diff --git a/lib/CodeGen/InstrSched/InstrScheduling.cpp b/lib/CodeGen/InstrSched/InstrScheduling.cpp index c95cce0b46..b98de81820 100644 --- a/lib/CodeGen/InstrSched/InstrScheduling.cpp +++ b/lib/CodeGen/InstrSched/InstrScheduling.cpp @@ -21,6 +21,7 @@ #include "llvm/BasicBlock.h" #include "Support/CommandLine.h" #include <algorithm> +#include <iostream> namespace llvm { diff --git a/lib/CodeGen/InstrSched/SchedGraph.cpp b/lib/CodeGen/InstrSched/SchedGraph.cpp index e88c801a42..9688f3930b 100644 --- a/lib/CodeGen/InstrSched/SchedGraph.cpp +++ b/lib/CodeGen/InstrSched/SchedGraph.cpp @@ -22,6 +22,7 @@ #include "llvm/Target/TargetMachine.h" #include "../../Target/SparcV9/SparcV9RegInfo.h" #include "Support/STLExtras.h" +#include <iostream> namespace llvm { diff --git a/lib/CodeGen/InstrSched/SchedGraphCommon.cpp b/lib/CodeGen/InstrSched/SchedGraphCommon.cpp index 3ab79f73f3..da4492f359 100644 --- a/lib/CodeGen/InstrSched/SchedGraphCommon.cpp +++ b/lib/CodeGen/InstrSched/SchedGraphCommon.cpp @@ -14,6 +14,7 @@ #include "llvm/CodeGen/SchedGraphCommon.h" #include "Support/STLExtras.h" +#include <iostream> namespace llvm { diff --git a/lib/CodeGen/InstrSched/SchedPriorities.cpp b/lib/CodeGen/InstrSched/SchedPriorities.cpp index 53b71fa3a7..3c0e0b2c33 100644 --- a/lib/CodeGen/InstrSched/SchedPriorities.cpp +++ b/lib/CodeGen/InstrSched/SchedPriorities.cpp @@ -22,6 +22,7 @@ #include "llvm/CodeGen/MachineBasicBlock.h" #include "llvm/Support/CFG.h" #include "Support/PostOrderIterator.h" +#include <iostream> namespace llvm { diff --git a/lib/CodeGen/IntrinsicLowering.cpp b/lib/CodeGen/IntrinsicLowering.cpp index 6af333e79a..c200aebf06 100644 --- a/lib/CodeGen/IntrinsicLowering.cpp +++ b/lib/CodeGen/IntrinsicLowering.cpp @@ -16,6 +16,8 @@ #include "llvm/DerivedTypes.h" #include "llvm/Module.h" #include "llvm/iOther.h" +#include <iostream> + using namespace llvm; template <class ArgIt> diff --git a/lib/CodeGen/MachineBasicBlock.cpp b/lib/CodeGen/MachineBasicBlock.cpp index a8a64dba51..20390a2f50 100644 --- a/lib/CodeGen/MachineBasicBlock.cpp +++ b/lib/CodeGen/MachineBasicBlock.cpp @@ -18,6 +18,7 @@ #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetMachine.h" #include "Support/LeakDetector.h" +#include <iostream> using namespace llvm; MachineBasicBlock::~MachineBasicBlock() { diff --git a/lib/CodeGen/MachineCodeEmitter.cpp b/lib/CodeGen/MachineCodeEmitter.cpp index fdfd392237..224c8c37cc 100644 --- a/lib/CodeGen/MachineCodeEmitter.cpp +++ b/lib/CodeGen/MachineCodeEmitter.cpp @@ -15,6 +15,8 @@ #include "llvm/CodeGen/MachineFunction.h" #include "llvm/Function.h" #include <fstream> +#include <iostream> + using namespace llvm; namespace { diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp index f9b8bbbd12..520f1da960 100644 --- a/lib/CodeGen/MachineFunction.cpp +++ b/lib/CodeGen/MachineFunction.cpp @@ -26,6 +26,7 @@ #include "llvm/iOther.h" #include "llvm/Type.h" #include "Support/LeakDetector.h" +#include <iostream> using namespace llvm; diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index 3f7e713ca0..8a61849595 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/lib/CodeGen/MachineInstr.cpp @@ -21,6 +21,8 @@ #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/MRegisterInfo.h" #include "Support/LeakDetector.h" +#include <iostream> + using namespace llvm; // Global variable holding an array of descriptors for machine instructions. diff --git a/lib/CodeGen/SelectionDAG/DAGBuilder.cpp b/lib/CodeGen/SelectionDAG/DAGBuilder.cpp index 470be877a3..1acc98db4c 100644 --- a/lib/CodeGen/SelectionDAG/DAGBuilder.cpp +++ b/lib/CodeGen/SelectionDAG/DAGBuilder.cpp @@ -20,6 +20,8 @@ #include "llvm/CodeGen/MachineFunction.h" #include "llvm/Target/TargetMachine.h" #include "llvm/Support/InstVisitor.h" +#include <iostream> + using namespace llvm; namespace llvm { diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 7dac9b3773..acf3daa32f 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -14,6 +14,8 @@ #include "llvm/CodeGen/SelectionDAG.h" #include "llvm/Type.h" +#include <iostream> + using namespace llvm; SelectionDAG::~SelectionDAG() { |