[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/BlockProfiling.cpp EdgeProfiling.cpp TraceBasicBlocks.cpp

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


Changes in directory llvm/lib/Transforms/Instrumentation:

BlockProfiling.cpp updated: 1.7 -> 1.8
EdgeProfiling.cpp updated: 1.1 -> 1.2
TraceBasicBlocks.cpp updated: 1.4 -> 1.5

---
Log message:

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


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

Index: llvm/lib/Transforms/Instrumentation/BlockProfiling.cpp
diff -u llvm/lib/Transforms/Instrumentation/BlockProfiling.cpp:1.7 llvm/lib/Transforms/Instrumentation/BlockProfiling.cpp:1.8
--- llvm/lib/Transforms/Instrumentation/BlockProfiling.cpp:1.7	Mon Mar  8 11:06:13 2004
+++ llvm/lib/Transforms/Instrumentation/BlockProfiling.cpp	Sun Jul  4 07:19:56 2004
@@ -24,6 +24,8 @@
 #include "llvm/Module.h"
 #include "llvm/Pass.h"
 #include "ProfilingUtils.h"
+#include <iostream>
+
 using namespace llvm;
 
 namespace {


Index: llvm/lib/Transforms/Instrumentation/EdgeProfiling.cpp
diff -u llvm/lib/Transforms/Instrumentation/EdgeProfiling.cpp:1.1 llvm/lib/Transforms/Instrumentation/EdgeProfiling.cpp:1.2
--- llvm/lib/Transforms/Instrumentation/EdgeProfiling.cpp:1.1	Mon Mar  8 11:54:34 2004
+++ llvm/lib/Transforms/Instrumentation/EdgeProfiling.cpp	Sun Jul  4 07:19:56 2004
@@ -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: llvm/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp
diff -u llvm/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp:1.4 llvm/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp:1.5
--- llvm/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp:1.4	Tue Jun 29 09:20:27 2004
+++ llvm/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp	Sun Jul  4 07:19:56 2004
@@ -23,6 +23,7 @@
 #include "llvm/iPHINode.h"
 #include "ProfilingUtils.h"
 #include "Support/Debug.h"
+#include <iostream>
 #include <set>
 using namespace llvm;
 





More information about the llvm-commits mailing list