[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/ProfilePaths/EdgeCode.cpp Graph.cpp InstLoops.cpp
Misha Brukman
brukman at cs.uiuc.edu
Thu Jul 29 10:25:34 PDT 2004
Changes in directory llvm/lib/Transforms/Instrumentation/ProfilePaths:
EdgeCode.cpp updated: 1.27 -> 1.28
Graph.cpp updated: 1.16 -> 1.17
InstLoops.cpp updated: 1.15 -> 1.16
---
Log message:
Fix #includes of i*.h => Instructions.h as per PR403: http://llvm.cs.uiuc.edu/PR403 .
---
Diffs of the changes: (+4 -10)
Index: llvm/lib/Transforms/Instrumentation/ProfilePaths/EdgeCode.cpp
diff -u llvm/lib/Transforms/Instrumentation/ProfilePaths/EdgeCode.cpp:1.27 llvm/lib/Transforms/Instrumentation/ProfilePaths/EdgeCode.cpp:1.28
--- llvm/lib/Transforms/Instrumentation/ProfilePaths/EdgeCode.cpp:1.27 Thu Nov 20 12:25:21 2003
+++ llvm/lib/Transforms/Instrumentation/ProfilePaths/EdgeCode.cpp Thu Jul 29 12:25:24 2004
@@ -17,11 +17,7 @@
#include "Graph.h"
#include "llvm/Constants.h"
#include "llvm/DerivedTypes.h"
-#include "llvm/iMemory.h"
-#include "llvm/iTerminators.h"
-#include "llvm/iOther.h"
-#include "llvm/iOperators.h"
-#include "llvm/iPHINode.h"
+#include "llvm/Instructions.h"
#include "llvm/Module.h"
#define INSERT_LOAD_COUNT
Index: llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp
diff -u llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp:1.16 llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp:1.17
--- llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp:1.16 Wed Jul 21 15:50:33 2004
+++ llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp Thu Jul 29 12:25:24 2004
@@ -13,7 +13,7 @@
//===----------------------------------------------------------------------===//
#include "Graph.h"
-#include "llvm/iTerminators.h"
+#include "llvm/Instructions.h"
#include "Support/Debug.h"
#include <algorithm>
Index: llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp
diff -u llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp:1.15 llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp:1.16
--- llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp:1.15 Wed Jul 21 15:50:33 2004
+++ llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp Thu Jul 29 12:25:24 2004
@@ -16,12 +16,10 @@
#include "llvm/Analysis/Dominators.h"
#include "llvm/Support/CFG.h"
-#include "llvm/iOther.h"
-#include "llvm/Type.h"
-#include "llvm/iTerminators.h"
-#include "llvm/iPHINode.h"
+#include "llvm/Instructions.h"
#include "llvm/Module.h"
#include "llvm/Pass.h"
+#include "llvm/Type.h"
#include "Support/Debug.h"
#include "../ProfilingUtils.h"
More information about the llvm-commits
mailing list