[llvm-commits] CVS: llvm/lib/Transforms/Utils/CodeExtractor.cpp SimplifyCFG.cpp ValueMapper.cpp

LLVM llvm at cs.uiuc.edu
Sun Jul 4 07:24:43 PDT 2004


Changes in directory llvm/lib/Transforms/Utils:

CodeExtractor.cpp updated: 1.24 -> 1.25
SimplifyCFG.cpp updated: 1.44 -> 1.45
ValueMapper.cpp updated: 1.12 -> 1.13

---
Log message:

Add #include <iostream> since Value.h does not #include it any more.


---
Diffs of the changes:  (+5 -0)

Index: llvm/lib/Transforms/Utils/CodeExtractor.cpp
diff -u llvm/lib/Transforms/Utils/CodeExtractor.cpp:1.24 llvm/lib/Transforms/Utils/CodeExtractor.cpp:1.25
--- llvm/lib/Transforms/Utils/CodeExtractor.cpp:1.24	Wed May 26 17:50:28 2004
+++ llvm/lib/Transforms/Utils/CodeExtractor.cpp	Sun Jul  4 07:19:56 2004
@@ -28,6 +28,7 @@
 #include "Support/Debug.h"
 #include "Support/StringExtras.h"
 #include <algorithm>
+#include <iostream>
 #include <set>
 using namespace llvm;
 


Index: llvm/lib/Transforms/Utils/SimplifyCFG.cpp
diff -u llvm/lib/Transforms/Utils/SimplifyCFG.cpp:1.44 llvm/lib/Transforms/Utils/SimplifyCFG.cpp:1.45
--- llvm/lib/Transforms/Utils/SimplifyCFG.cpp:1.44	Mon Jun 21 02:19:01 2004
+++ llvm/lib/Transforms/Utils/SimplifyCFG.cpp	Sun Jul  4 07:19:56 2004
@@ -21,6 +21,8 @@
 #include <algorithm>
 #include <functional>
 #include <set>
+#include <iostream>
+
 using namespace llvm;
 
 // PropagatePredecessorsForPHIs - This gets "Succ" ready to have the


Index: llvm/lib/Transforms/Utils/ValueMapper.cpp
diff -u llvm/lib/Transforms/Utils/ValueMapper.cpp:1.12 llvm/lib/Transforms/Utils/ValueMapper.cpp:1.13
--- llvm/lib/Transforms/Utils/ValueMapper.cpp:1.12	Wed May 19 04:08:12 2004
+++ llvm/lib/Transforms/Utils/ValueMapper.cpp	Sun Jul  4 07:19:56 2004
@@ -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) {





More information about the llvm-commits mailing list