[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp GraphAuxiliary.cpp ProfilePaths.cpp RetracePath.cpp
Misha Brukman
brukman at cs.uiuc.edu
Thu Jul 29 10:27:03 PDT 2004
Changes in directory llvm/lib/Transforms/Instrumentation/ProfilePaths:
CombineBranch.cpp updated: 1.10 -> 1.11
GraphAuxiliary.cpp updated: 1.23 -> 1.24
ProfilePaths.cpp updated: 1.38 -> 1.39
RetracePath.cpp updated: 1.9 -> 1.10
---
Log message:
Fix #includes of i*.h => Instructions.h as per PR403: http://llvm.cs.uiuc.edu/PR403 .
---
Diffs of the changes: (+4 -8)
Index: llvm/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp
diff -u llvm/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp:1.10 llvm/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp:1.11
--- llvm/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp:1.10 Thu Jun 3 00:03:02 2004
+++ llvm/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp Thu Jul 29 12:26:53 2004
@@ -14,8 +14,7 @@
//===----------------------------------------------------------------------===//
#include "llvm/Support/CFG.h"
-#include "llvm/iTerminators.h"
-#include "llvm/iPHINode.h"
+#include "llvm/Instructions.h"
#include "llvm/Function.h"
#include "llvm/Pass.h"
Index: llvm/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp
diff -u llvm/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp:1.23 llvm/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp:1.24
--- llvm/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp:1.23 Wed Jul 21 15:50:33 2004
+++ llvm/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp Thu Jul 29 12:26:53 2004
@@ -14,7 +14,7 @@
#include "llvm/Pass.h"
#include "llvm/Module.h"
-#include "llvm/iTerminators.h"
+#include "llvm/Instructions.h"
#include "Support/Debug.h"
#include <algorithm>
#include "Graph.h"
Index: llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp
diff -u llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp:1.38 llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp:1.39
--- llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp:1.38 Tue Nov 11 16:41:33 2003
+++ llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp Thu Jul 29 12:26:53 2004
@@ -35,9 +35,7 @@
#include "llvm/Support/CFG.h"
#include "llvm/Constants.h"
#include "llvm/DerivedTypes.h"
-#include "llvm/iMemory.h"
-#include "llvm/iOperators.h"
-#include "llvm/iOther.h"
+#include "llvm/Instructions.h"
#include "llvm/Module.h"
#include "Graph.h"
#include <fstream>
Index: llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp
diff -u llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp:1.9 llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp:1.10
--- llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp:1.9 Sun Jul 4 07:19:56 2004
+++ llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp Thu Jul 29 12:26:53 2004
@@ -12,8 +12,7 @@
//===----------------------------------------------------------------------===//
#include "llvm/Module.h"
-#include "llvm/iTerminators.h"
-#include "llvm/iOther.h"
+#include "llvm/Instructions.h"
#include "llvm/Support/CFG.h"
#include "Graph.h"
#include <iostream>
More information about the llvm-commits
mailing list