Add #include <iostream> since Value.h does not #include it any more.
authorReid Spencer <rspencer@reidspencer.com>
Sun, 4 Jul 2004 12:19:56 +0000 (12:19 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sun, 4 Jul 2004 12:19:56 +0000 (12:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14622 91177308-0d34-0410-b5e6-96231b3b80d8

65 files changed:
lib/Analysis/AliasAnalysis.cpp
lib/Analysis/AliasAnalysisEvaluator.cpp
lib/Analysis/AliasSetTracker.cpp
lib/Analysis/ConstantRange.cpp
lib/Analysis/DataStructure/GraphChecker.cpp
lib/Analysis/DataStructure/Local.cpp
lib/Analysis/DataStructure/PgmDependenceGraph.cpp
lib/Analysis/DataStructure/Steensgaard.cpp
lib/Analysis/Expressions.cpp
lib/Analysis/IPA/PrintSCC.cpp
lib/Analysis/LoopInfo.cpp
lib/Analysis/ProfileInfoLoader.cpp
lib/Analysis/ProfileInfoLoaderPass.cpp
lib/Analysis/Trace.cpp
lib/CodeGen/InstrSched/InstrScheduling.cpp
lib/CodeGen/InstrSched/SchedGraph.cpp
lib/CodeGen/InstrSched/SchedGraphCommon.cpp
lib/CodeGen/InstrSched/SchedPriorities.cpp
lib/CodeGen/IntrinsicLowering.cpp
lib/CodeGen/MachineBasicBlock.cpp
lib/CodeGen/MachineCodeEmitter.cpp
lib/CodeGen/MachineFunction.cpp
lib/CodeGen/MachineInstr.cpp
lib/CodeGen/SelectionDAG/DAGBuilder.cpp
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
lib/Debugger/ProgramInfo.cpp
lib/ExecutionEngine/Interpreter/Interpreter.h
lib/ExecutionEngine/JIT/JIT.cpp
lib/Support/ConstantRange.cpp
lib/Support/LeakDetector.cpp
lib/Target/CBackend/CBackend.cpp
lib/Target/CBackend/Writer.cpp
lib/Target/SparcV9/InstrSched/InstrScheduling.cpp
lib/Target/SparcV9/InstrSched/SchedGraph.cpp
lib/Target/SparcV9/InstrSched/SchedGraphCommon.cpp
lib/Target/SparcV9/InstrSched/SchedPriorities.cpp
lib/Target/SparcV9/InstrSelection/InstrForest.cpp
lib/Target/SparcV9/InstrSelection/InstrSelection.cpp
lib/Target/SparcV9/LiveVar/BBLiveVar.cpp
lib/Target/SparcV9/LiveVar/FunctionLiveVarInfo.cpp
lib/Target/SparcV9/RegAlloc/InterferenceGraph.cpp
lib/Target/SparcV9/RegAlloc/LiveRangeInfo.cpp
lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp
lib/Target/SparcV9/RegAlloc/RegClass.cpp
lib/Target/SparcV9/SparcV9RegClassInfo.cpp
lib/Target/SparcV9/SparcV9RegInfo.cpp
lib/Target/X86/InstSelectPattern.cpp
lib/Target/X86/X86ISelPattern.cpp
lib/Target/X86/X86RegisterInfo.cpp
lib/Transforms/ExprTypeConvert.cpp
lib/Transforms/Instrumentation/BlockProfiling.cpp
lib/Transforms/Instrumentation/EdgeProfiling.cpp
lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp
lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp
lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp
lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp
lib/Transforms/Instrumentation/TraceBasicBlocks.cpp
lib/Transforms/Scalar/LowerConstantExprs.cpp
lib/Transforms/Utils/CodeExtractor.cpp
lib/Transforms/Utils/SimplifyCFG.cpp
lib/Transforms/Utils/ValueMapper.cpp
lib/VMCore/ConstantRange.cpp
lib/VMCore/LeakDetector.cpp
tools/analyze/PrintSCC.cpp
tools/opt/PrintSCC.cpp

index 193be84b0dbf1fd09ed71e668b3369c92fbf2ce3..f1b0f56b847cff79aa065c9e2a8b9ad443f47961 100644 (file)
@@ -28,6 +28,7 @@
 #include "llvm/BasicBlock.h"
 #include "llvm/iMemory.h"
 #include "llvm/Target/TargetData.h"
+#include <iostream>
 using namespace llvm;
 
 // Register the AliasAnalysis interface, providing a nice name to refer to.
index ef7b5015f190cab26f251d2dbbc8ff40b24fcd15..e5ac43658b1715bd4305347dfcaa7f21890e3aad 100644 (file)
@@ -26,7 +26,9 @@
 #include "llvm/Assembly/Writer.h"
 #include "llvm/Support/InstIterator.h"
 #include "Support/CommandLine.h"
+#include <iostream>
 #include <set>
+
 using namespace llvm;
 
 namespace {
index 342c7a3be8c7a4d007393a74ce99db7ced1eaea7..190a5a975577e6bff3efe4e90507ec9881c43784 100644 (file)
@@ -20,6 +20,7 @@
 #include "llvm/Target/TargetData.h"
 #include "llvm/Assembly/Writer.h"
 #include "llvm/Support/InstIterator.h"
+#include <iostream>
 using namespace llvm;
 
 /// mergeSetIn - Merge the specified alias set into this alias set...
index cb4be83bbd1c89a240601125931b7a8cb8001e09..580ca01ac39bdf35d9fa812a888b2313c18f73f3 100644 (file)
@@ -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) {
index af8731eb05c01934e7c166891be26d97d6ff6257..a5a639c514daa87d9ede02568bca1f9c8f2209c1 100644 (file)
@@ -27,6 +27,7 @@
 #include "llvm/Analysis/DSGraph.h"
 #include "Support/CommandLine.h"
 #include "llvm/Value.h"
+#include <iostream>
 #include <set>
 
 using namespace llvm;
index 31ce79dd40819ac2767c0947436ddd58c646110a..4a61e8bb1068b71d759607a502c5d2a9f84f55a6 100644 (file)
@@ -24,6 +24,7 @@
 #include "Support/CommandLine.h"
 #include "Support/Debug.h"
 #include "Support/Timer.h"
+#include <iostream>
 
 // FIXME: This should eventually be a FunctionPass that is automatically
 // aggregated into a Pass.
index b87126463c21939183c6eeafc28ad63133b18423..102c72bc47afa5aa22cf1cd411e9b1588516572d 100644 (file)
@@ -28,6 +28,7 @@
 #include "PgmDependenceGraph.h"
 #include "llvm/Analysis/PostDominators.h"
 #include "llvm/Function.h"
+#include <iostream>
 
 namespace llvm {
 
index 12972eebe5cb2192cba8a098213bfed5bb58e25c..51d6134bf2e40322183004e25f5889488c705884 100644 (file)
@@ -19,6 +19,7 @@
 #include "llvm/Analysis/AliasAnalysis.h"
 #include "llvm/Module.h"
 #include "Support/Debug.h"
+#include <iostream>
 using namespace llvm;
 
 namespace {
index 3be3d3b2a1a2b9e3b441c2d1d6600765889bcb9e..7549a19e09ec2dff60e38cbbbcf48564fd333b8a 100644 (file)
@@ -18,6 +18,8 @@
 #include "llvm/Constants.h"
 #include "llvm/Function.h"
 #include "llvm/Type.h"
+#include <iostream>
+
 using namespace llvm;
 
 ExprType::ExprType(Value *Val) {
index ce89fff90e6104a947c38f979b50bbb403cdc64c..8911cc36e2234b656d7ea609430626564252d30f 100644 (file)
@@ -30,6 +30,7 @@
 #include "llvm/Analysis/CallGraph.h"
 #include "llvm/Support/CFG.h"
 #include "Support/SCCIterator.h"
+#include <iostream>
 
 namespace llvm {
 
index 8619984f3df726a245e4edde9b7640424804cf92..131d02a32b8c10633eeb5739413b681f40da68a1 100644 (file)
@@ -22,6 +22,8 @@
 #include "llvm/Support/CFG.h"
 #include "Support/DepthFirstIterator.h"
 #include <algorithm>
+#include <iostream>
+
 using namespace llvm;
 
 static RegisterAnalysis<LoopInfo>
index 46a888365d4117195ba1f22890d5d116b26f4b2d..809dbf314cf790b332c1e2d1db5d31e223522609 100644 (file)
@@ -17,7 +17,9 @@
 #include "llvm/Module.h"
 #include "llvm/InstrTypes.h"
 #include <cstdio>
+#include <iostream>
 #include <map>
+
 using namespace llvm;
 
 // ByteSwap - Byteswap 'Var' if 'Really' is true.
index b32dcc406ad92209239f29f3eccf227ade57e98a..4ab56ce15698b5c2cad793be1f1f290e39617f5f 100644 (file)
@@ -18,6 +18,8 @@
 #include "llvm/Analysis/ProfileInfo.h"
 #include "llvm/Analysis/ProfileInfoLoader.h"
 #include "Support/CommandLine.h"
+#include <iostream>
+
 using namespace llvm;
 
 namespace {
index 4ab33ed7dbf9bcb5ab1102e4b056a5abecabe699..9fc7b8a2c6aeec8e5f9153601706d4bc63391284 100644 (file)
@@ -18,6 +18,8 @@
 #include "llvm/Analysis/Trace.h"
 #include "llvm/Function.h"
 #include "llvm/Assembly/Writer.h"
+#include <iostream>
+
 using namespace llvm;
 
 Function *Trace::getFunction() const {
index c95cce0b46272e6cebf55505edc49c0507bc3a5d..b98de81820dc25dab329d1b81b19ec5b1888940a 100644 (file)
@@ -21,6 +21,7 @@
 #include "llvm/BasicBlock.h"
 #include "Support/CommandLine.h"
 #include <algorithm>
+#include <iostream>
 
 namespace llvm {
 
index e88c801a425f1795d254a60615feba58db653875..9688f3930bb01199c08956a342d3735754771267 100644 (file)
@@ -22,6 +22,7 @@
 #include "llvm/Target/TargetMachine.h"
 #include "../../Target/SparcV9/SparcV9RegInfo.h"
 #include "Support/STLExtras.h"
+#include <iostream>
 
 namespace llvm {
 
index 3ab79f73f3a46bb52a2e708f1b1c4e39f5a9aa94..da4492f359d0ff51c6d9f3db90eb5b8bdcb275e0 100644 (file)
@@ -14,6 +14,7 @@
 
 #include "llvm/CodeGen/SchedGraphCommon.h"
 #include "Support/STLExtras.h"
+#include <iostream>
 
 namespace llvm {
 
index 53b71fa3a737a3eb5c3676a1cdb7f54cffe97c5c..3c0e0b2c33cdbdb78db4abed5d6b135b7bb53b36 100644 (file)
@@ -22,6 +22,7 @@
 #include "llvm/CodeGen/MachineBasicBlock.h"
 #include "llvm/Support/CFG.h"
 #include "Support/PostOrderIterator.h"
+#include <iostream>
 
 namespace llvm {
 
index 6af333e79a59abefd5255f287256c1e882af7c89..c200aebf06da3fe1919c6f7c1965af1191763eca 100644 (file)
@@ -16,6 +16,8 @@
 #include "llvm/DerivedTypes.h"
 #include "llvm/Module.h"
 #include "llvm/iOther.h"
+#include <iostream>
+
 using namespace llvm;
 
 template <class ArgIt>
index a8a64dba516fbbc611d73d7fa0b9ba9ec0f0d235..20390a2f50e34d83ed7e98a9e654f4e50350d68c 100644 (file)
@@ -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() {
index fdfd392237846c306ba8b009e6155309839f2600..224c8c37ccf6777e4dce1c285d22ae833b55f55c 100644 (file)
@@ -15,6 +15,8 @@
 #include "llvm/CodeGen/MachineFunction.h"
 #include "llvm/Function.h"
 #include <fstream>
+#include <iostream>
+
 using namespace llvm;
 
 namespace {
index f9b8bbbd12fe6c3f98415b2be434f1ee492a3c1f..520f1da960963641264e1aec1f004b2455f054b2 100644 (file)
@@ -26,6 +26,7 @@
 #include "llvm/iOther.h"
 #include "llvm/Type.h"
 #include "Support/LeakDetector.h"
+#include <iostream>
 
 using namespace llvm;
 
index 3f7e713ca01287b3f992d66c1bd38fa9e346b3c6..8a618495953fb1ac806cd241a2b597eab6a3fbbf 100644 (file)
@@ -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.
index 470be877a39750f5c2b0d9a5db871e1f85dd59a1..1acc98db4c9929b219c54ed26f589147d1b1c0d1 100644 (file)
@@ -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 {
index 7dac9b3773eb0f442bff953e0d2c9ebc8f16b4ad..acf3daa32f579408da86b88525182fa0849f1b32 100644 (file)
@@ -14,6 +14,8 @@
 
 #include "llvm/CodeGen/SelectionDAG.h"
 #include "llvm/Type.h"
+#include <iostream>
+
 using namespace llvm;
 
 SelectionDAG::~SelectionDAG() {
index 29195bd159e8a7bcf5c8d56a43e1da4b6a922377..a3e55a3aef162c5115795a78f8006e8c1964f028 100644 (file)
@@ -23,6 +23,8 @@
 #include "Support/FileUtilities.h"
 #include "Support/SlowOperationInformer.h"
 #include "Support/STLExtras.h"
+#include <iostream>
+
 using namespace llvm;
 
 /// getGlobalVariablesUsing - Return all of the global variables which have the
index 7757aae86135485ae360c9a17bd07c6bc7ad7dd3..99e417c4a84a304196bced5c5c48a504470da004 100644 (file)
@@ -21,6 +21,7 @@
 #include "llvm/Support/CallSite.h"
 #include "llvm/Target/TargetData.h"
 #include "Support/DataTypes.h"
+#include <iostream>
 
 namespace llvm {
 
index 3d4bc4c68826c7b6b4e3d07d0fd959357b63a781..5340a19e3ed041d902f033dd120a06db85398c49 100644 (file)
@@ -23,6 +23,8 @@
 #include "llvm/Target/TargetMachine.h"
 #include "llvm/Target/TargetJITInfo.h"
 #include "Support/DynamicLinker.h"
+#include <iostream>
+
 using namespace llvm;
 
 JIT::JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji)
index cb4be83bbd1c89a240601125931b7a8cb8001e09..580ca01ac39bdf35d9fa812a888b2313c18f73f3 100644 (file)
@@ -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) {
index d4e829f1d983bede6039c8d53bf21c8921712351..919f7a9c2133de7d03fadf1ddebaa0011b9341fe 100644 (file)
@@ -13,6 +13,7 @@
 
 #include "Support/LeakDetector.h"
 #include "llvm/Value.h"
+#include <iostream>
 #include <set>
 using namespace llvm;
 
index adda86d64eefdf2c5ef9a51395e42809779fd8ef..1f6b90059797661c171ca601fc69cc3b479bf1c4 100644 (file)
@@ -35,6 +35,7 @@
 #include "Support/StringExtras.h"
 #include "Config/config.h"
 #include <algorithm>
+#include <iostream>
 #include <sstream>
 using namespace llvm;
 
@@ -222,7 +223,7 @@ bool CBackendNameAllUsedStructs::run(Module &M) {
   for (SymbolTable::type_iterator TI = MST.type_begin(), TE = MST.type_end();
        TI != TE; ) {
     SymbolTable::type_iterator I = TI++;
-    if (StructType *STy = dyn_cast<StructType>(I->second)) {
+    if (const StructType *STy = dyn_cast<StructType>(I->second)) {
       // If this is not used, remove it from the symbol table.
       std::set<const Type *>::iterator UTI = UT.find(STy);
       if (UTI == UT.end())
index adda86d64eefdf2c5ef9a51395e42809779fd8ef..1f6b90059797661c171ca601fc69cc3b479bf1c4 100644 (file)
@@ -35,6 +35,7 @@
 #include "Support/StringExtras.h"
 #include "Config/config.h"
 #include <algorithm>
+#include <iostream>
 #include <sstream>
 using namespace llvm;
 
@@ -222,7 +223,7 @@ bool CBackendNameAllUsedStructs::run(Module &M) {
   for (SymbolTable::type_iterator TI = MST.type_begin(), TE = MST.type_end();
        TI != TE; ) {
     SymbolTable::type_iterator I = TI++;
-    if (StructType *STy = dyn_cast<StructType>(I->second)) {
+    if (const StructType *STy = dyn_cast<StructType>(I->second)) {
       // If this is not used, remove it from the symbol table.
       std::set<const Type *>::iterator UTI = UT.find(STy);
       if (UTI == UT.end())
index c95cce0b46272e6cebf55505edc49c0507bc3a5d..b98de81820dc25dab329d1b81b19ec5b1888940a 100644 (file)
@@ -21,6 +21,7 @@
 #include "llvm/BasicBlock.h"
 #include "Support/CommandLine.h"
 #include <algorithm>
+#include <iostream>
 
 namespace llvm {
 
index e88c801a425f1795d254a60615feba58db653875..9688f3930bb01199c08956a342d3735754771267 100644 (file)
@@ -22,6 +22,7 @@
 #include "llvm/Target/TargetMachine.h"
 #include "../../Target/SparcV9/SparcV9RegInfo.h"
 #include "Support/STLExtras.h"
+#include <iostream>
 
 namespace llvm {
 
index 3ab79f73f3a46bb52a2e708f1b1c4e39f5a9aa94..da4492f359d0ff51c6d9f3db90eb5b8bdcb275e0 100644 (file)
@@ -14,6 +14,7 @@
 
 #include "llvm/CodeGen/SchedGraphCommon.h"
 #include "Support/STLExtras.h"
+#include <iostream>
 
 namespace llvm {
 
index 53b71fa3a737a3eb5c3676a1cdb7f54cffe97c5c..3c0e0b2c33cdbdb78db4abed5d6b135b7bb53b36 100644 (file)
@@ -22,6 +22,7 @@
 #include "llvm/CodeGen/MachineBasicBlock.h"
 #include "llvm/Support/CFG.h"
 #include "Support/PostOrderIterator.h"
+#include <iostream>
 
 namespace llvm {
 
index bb2c11ab185eadb8affb002b1eed1edd65d2a6f2..675bc2d58abb43e6ff3bea4819ecb7531ef83668 100644 (file)
@@ -28,6 +28,7 @@
 #include "llvm/CodeGen/MachineInstr.h"
 #include "Support/STLExtras.h"
 #include "Config/alloca.h"
+#include <iostream>
 
 namespace llvm {
 
index 0e8c58b1bd133f2857653cfe76807db54f461e14..07464b473a98d6cb8a5f6867705150b970cfa2c2 100644 (file)
@@ -27,6 +27,7 @@
 #include "../SparcV9RegInfo.h"
 #include "Support/CommandLine.h"
 #include "Support/LeakDetector.h"
+#include <iostream>
 
 namespace llvm {
   std::vector<MachineInstr*>
index fd8c662cc57a60dc2a3234a8a43fe67f956855cf..09f59542696b4e1f35ee7d28600f1c1f59899c13 100644 (file)
@@ -18,6 +18,7 @@
 #include "llvm/Support/CFG.h"
 #include "Support/SetOperations.h"
 #include "../SparcV9Internals.h"
+#include <iostream>
 
 namespace llvm {
 
index 149df1064f125142482fb9c4def62fedc6dbf27c..719a1a8a34429ca2cfd49b038752500516432c05 100644 (file)
@@ -22,6 +22,7 @@
 #include "Support/SetOperations.h"
 #include "Support/CommandLine.h"
 #include "BBLiveVar.h"
+#include <iostream>
 
 namespace llvm {
 
index 3cef19ea0e0539940c35c2598f9e5d2ed5cc5321..a02cdef8675477b034d2b2b0b89d968ae19bc4cc 100644 (file)
@@ -16,6 +16,7 @@
 #include "RegAllocCommon.h"
 #include "Support/STLExtras.h"
 #include <algorithm>
+#include <iostream>
 
 namespace llvm {
 
index e6a687741b79f43293ffb7f7cd341548f88f7cc4..2388ff02550005eca212a9ae61e9a1ba7bcad30b 100644 (file)
@@ -22,6 +22,7 @@
 #include "llvm/Target/TargetInstrInfo.h"
 #include "../SparcV9RegInfo.h"
 #include "Support/SetOperations.h"
+#include <iostream>
 
 namespace llvm {
 
index 4c156bcecc673256862340e5d42d791107ccf666..95756db241231b01168b1f96fa28062ae865c454 100644 (file)
@@ -47,6 +47,7 @@
 #include "Support/SetOperations.h"
 #include "Support/STLExtras.h"
 #include <cmath>
+#include <iostream>
 
 namespace llvm {
 
index a748c1aaa06f9d57c31f79cea4e4f8dd1bcd507d..07e478bc543f45c86e1cfdcd048a5ca85b4d3171 100644 (file)
@@ -15,6 +15,7 @@
 #include "RegAllocCommon.h"
 #include "RegClass.h"
 #include "../SparcV9RegInfo.h"
+#include <iostream>
 
 namespace llvm {
 
index 0f83bb2037572d81eb98470f2d4351ad2246ab16..df4e44c7ee77ea9c277556b2db06a881aa07e8d8 100644 (file)
@@ -19,6 +19,7 @@
 #include "SparcV9RegInfo.h"
 #include "RegAlloc/RegAllocCommon.h"
 #include "RegAlloc/IGNode.h"
+#include <iostream>
 
 namespace llvm {
 
index a7e1dbdcb9100a225b52f94a0c2e9d55dc95b4b4..e16db9f99d293cecdeda14cf3a3c9d293246bcca 100644 (file)
@@ -28,6 +28,7 @@
 #include "SparcV9RegClassInfo.h"
 #include "SparcV9RegInfo.h"
 #include "SparcV9TargetMachine.h"
+#include <iostream>
 
 namespace llvm {
 
index 6b848b00ea2f8f558d8e371b2910fb43b3620fd0..cd79b1d87d852054fe27be21c0322af18ef33a8e 100644 (file)
@@ -22,8 +22,8 @@
 #include "llvm/CodeGen/MachineFunction.h"
 #include "llvm/CodeGen/MachineFrameInfo.h"
 #include "llvm/CodeGen/SSARegMap.h"
-
 #include "X86RegisterInfo.h"
+#include <iostream>
 
 // Include the generated instruction selector...
 #include "X86GenInstrSelector.inc"
index 6b848b00ea2f8f558d8e371b2910fb43b3620fd0..cd79b1d87d852054fe27be21c0322af18ef33a8e 100644 (file)
@@ -22,8 +22,8 @@
 #include "llvm/CodeGen/MachineFunction.h"
 #include "llvm/CodeGen/MachineFrameInfo.h"
 #include "llvm/CodeGen/SSARegMap.h"
-
 #include "X86RegisterInfo.h"
+#include <iostream>
 
 // Include the generated instruction selector...
 #include "X86GenInstrSelector.inc"
index 8be00312c0a209f914a9ec7eab80225abd021d89..74f824b3c9f42a36567742d13a2fc7e7704431af 100644 (file)
@@ -26,6 +26,8 @@
 #include "llvm/Target/TargetMachineImpls.h"
 #include "Support/CommandLine.h"
 #include "Support/STLExtras.h"
+#include <iostream>
+
 using namespace llvm;
 
 namespace {
index f1a7733d5997f16efcd9406b17a63a90b214ec13..25c01db46ebad5a629d593b5b7778881d8bfa3bd 100644 (file)
@@ -23,6 +23,7 @@
 #include "Support/STLExtras.h"
 #include "Support/Debug.h"
 #include <algorithm>
+#include <iostream>
 using namespace llvm;
 
 static bool OperandConvertibleToType(User *U, Value *V, const Type *Ty,
index c518821a6dddd8f192d4591ebee492ab7c182d8a..b7c19e6e0972a9567b9a48e4c27fe11289491c2b 100644 (file)
@@ -24,6 +24,8 @@
 #include "llvm/Module.h"
 #include "llvm/Pass.h"
 #include "ProfilingUtils.h"
+#include <iostream>
+
 using namespace llvm;
 
 namespace {
index b4ef2dc64870e406ee3d43dc6fe44e0c38e9ca42..ef334f22f3353fcb91d1a37afa3ac44d26a350b5 100644 (file)
@@ -23,6 +23,7 @@
 #include "llvm/Pass.h"
 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
 #include "ProfilingUtils.h"
+#include <iostream>
 #include <set>
 using namespace llvm;
 
index d69c4c3b4ce32570f713d35c27579466ae860150..d667e57875b510700f3d05fa870ef7f3c5ef5731 100644 (file)
@@ -16,6 +16,7 @@
 #include "llvm/iTerminators.h"
 #include "Support/Debug.h"
 #include <algorithm>
+#include <iostream>
 
 using std::vector;
 
index d9dc011cd5e73e7ee270774be3fa7496a03f5f18..f0db940ced1c149c1420967e3e05fea7e1bbb614 100644 (file)
@@ -17,6 +17,7 @@
 #include "llvm/iTerminators.h"
 #include "Support/Debug.h"
 #include <algorithm>
+#include <iostream>
 #include "Graph.h"
 
 //using std::list;
index 5d53d230c9416a4804317b0bd5d6a7ec827f9c18..5821fda8da19a77da1a5e83ed1801a4dd2ec1c09 100644 (file)
@@ -24,6 +24,7 @@
 #include "llvm/Pass.h"
 #include "Support/Debug.h"
 #include "../ProfilingUtils.h"
+#include <iostream>
 
 namespace llvm {
 
index cbb2ae6aee590158e6edc8a761ae43ca663658d4..21d11bec2e06ed6db65dacccef7cbd7d53169773 100644 (file)
@@ -16,6 +16,7 @@
 #include "llvm/iOther.h"
 #include "llvm/Support/CFG.h"
 #include "Graph.h"
+#include <iostream>
 
 using std::vector;
 using std::map;
index 9403aa26f7517f5bda8ade250b23381732b145da..3258bf5b21b6f432e3a8094971451be5f7cba64a 100644 (file)
@@ -23,6 +23,7 @@
 #include "llvm/iPHINode.h"
 #include "ProfilingUtils.h"
 #include "Support/Debug.h"
+#include <iostream>
 #include <set>
 using namespace llvm;
 
index 9eeef5e6460f31d231a22e5b4eb6b607696644dd..b4aa4db1df206b8b9c40e1e1f947645d8a1ba82b 100644 (file)
@@ -22,6 +22,7 @@
 #include "llvm/iOther.h"
 #include "llvm/Support/InstIterator.h"
 #include <vector>
+#include <iostream>
 
 using namespace llvm;
 using namespace std;
index cab281a7fcbe46a0bc6f939d5aeebad17573ad9a..8699e88578b27a18bbd8bdfadee596aee45f6838 100644 (file)
@@ -28,6 +28,7 @@
 #include "Support/Debug.h"
 #include "Support/StringExtras.h"
 #include <algorithm>
+#include <iostream>
 #include <set>
 using namespace llvm;
 
index ed3cc8866ef1878feb3e6a4fed8ee74ef3639c61..579812efa8f556e2e2606973651d616cc0ba4c8e 100644 (file)
@@ -21,6 +21,8 @@
 #include <algorithm>
 #include <functional>
 #include <set>
+#include <iostream>
+
 using namespace llvm;
 
 // PropagatePredecessorsForPHIs - This gets "Succ" ready to have the
index abf9957eb134ea2e37a885c611cafd3765c874b1..16547e13377a644ce83b89c5c7b15b49240c42fd 100644 (file)
@@ -15,6 +15,8 @@
 #include "ValueMapper.h"
 #include "llvm/Constants.h"
 #include "llvm/Instruction.h"
+#include <iostream>
+
 using namespace llvm;
 
 Value *llvm::MapValue(const Value *V, std::map<const Value*, Value*> &VM) {
index cb4be83bbd1c89a240601125931b7a8cb8001e09..580ca01ac39bdf35d9fa812a888b2313c18f73f3 100644 (file)
@@ -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) {
index d4e829f1d983bede6039c8d53bf21c8921712351..919f7a9c2133de7d03fadf1ddebaa0011b9341fe 100644 (file)
@@ -13,6 +13,7 @@
 
 #include "Support/LeakDetector.h"
 #include "llvm/Value.h"
+#include <iostream>
 #include <set>
 using namespace llvm;
 
index ce89fff90e6104a947c38f979b50bbb403cdc64c..8911cc36e2234b656d7ea609430626564252d30f 100644 (file)
@@ -30,6 +30,7 @@
 #include "llvm/Analysis/CallGraph.h"
 #include "llvm/Support/CFG.h"
 #include "Support/SCCIterator.h"
+#include <iostream>
 
 namespace llvm {
 
index ce89fff90e6104a947c38f979b50bbb403cdc64c..8911cc36e2234b656d7ea609430626564252d30f 100644 (file)
@@ -30,6 +30,7 @@
 #include "llvm/Analysis/CallGraph.h"
 #include "llvm/Support/CFG.h"
 #include "Support/SCCIterator.h"
+#include <iostream>
 
 namespace llvm {