[llvm-commits] CVS: llvm/lib/CodeGen/MachineFunction.cpp PHIElimination.cpp PrologEpilogInserter.cpp RegAllocLinearScan.cpp RegAllocLocal.cpp RegAllocSimple.cpp TwoAddressInstructionPass.cpp UnreachableBlockElim.cpp VirtRegMap.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Aug 27 05:54:29 PDT 2006
Changes in directory llvm/lib/CodeGen:
MachineFunction.cpp updated: 1.96 -> 1.97
PHIElimination.cpp updated: 1.44 -> 1.45
PrologEpilogInserter.cpp updated: 1.57 -> 1.58
RegAllocLinearScan.cpp updated: 1.127 -> 1.128
RegAllocLocal.cpp updated: 1.85 -> 1.86
RegAllocSimple.cpp updated: 1.72 -> 1.73
TwoAddressInstructionPass.cpp updated: 1.36 -> 1.37
UnreachableBlockElim.cpp updated: 1.7 -> 1.8
VirtRegMap.cpp updated: 1.71 -> 1.72
---
Log message:
s|llvm/Support/Visibility.h|llvm/Support/Compiler.h|
---
Diffs of the changes: (+9 -9)
MachineFunction.cpp | 2 +-
PHIElimination.cpp | 2 +-
PrologEpilogInserter.cpp | 2 +-
RegAllocLinearScan.cpp | 2 +-
RegAllocLocal.cpp | 2 +-
RegAllocSimple.cpp | 2 +-
TwoAddressInstructionPass.cpp | 2 +-
UnreachableBlockElim.cpp | 2 +-
VirtRegMap.cpp | 2 +-
9 files changed, 9 insertions(+), 9 deletions(-)
Index: llvm/lib/CodeGen/MachineFunction.cpp
diff -u llvm/lib/CodeGen/MachineFunction.cpp:1.96 llvm/lib/CodeGen/MachineFunction.cpp:1.97
--- llvm/lib/CodeGen/MachineFunction.cpp:1.96 Fri Jul 14 18:08:47 2006
+++ llvm/lib/CodeGen/MachineFunction.cpp Sun Aug 27 07:54:01 2006
@@ -27,7 +27,7 @@
#include "llvm/Instructions.h"
#include "llvm/Support/LeakDetector.h"
#include "llvm/Support/GraphWriter.h"
-#include "llvm/Support/Visibility.h"
+#include "llvm/Support/Compiler.h"
#include "llvm/Config/config.h"
#include <fstream>
#include <iostream>
Index: llvm/lib/CodeGen/PHIElimination.cpp
diff -u llvm/lib/CodeGen/PHIElimination.cpp:1.44 llvm/lib/CodeGen/PHIElimination.cpp:1.45
--- llvm/lib/CodeGen/PHIElimination.cpp:1.44 Sat Aug 12 00:41:39 2006
+++ llvm/lib/CodeGen/PHIElimination.cpp Sun Aug 27 07:54:01 2006
@@ -23,7 +23,7 @@
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/Statistic.h"
-#include "llvm/Support/Visibility.h"
+#include "llvm/Support/Compiler.h"
#include <set>
#include <algorithm>
using namespace llvm;
Index: llvm/lib/CodeGen/PrologEpilogInserter.cpp
diff -u llvm/lib/CodeGen/PrologEpilogInserter.cpp:1.57 llvm/lib/CodeGen/PrologEpilogInserter.cpp:1.58
--- llvm/lib/CodeGen/PrologEpilogInserter.cpp:1.57 Fri Aug 25 17:56:30 2006
+++ llvm/lib/CodeGen/PrologEpilogInserter.cpp Sun Aug 27 07:54:01 2006
@@ -24,7 +24,7 @@
#include "llvm/Target/MRegisterInfo.h"
#include "llvm/Target/TargetFrameInfo.h"
#include "llvm/Target/TargetInstrInfo.h"
-#include "llvm/Support/Visibility.h"
+#include "llvm/Support/Compiler.h"
using namespace llvm;
namespace {
Index: llvm/lib/CodeGen/RegAllocLinearScan.cpp
diff -u llvm/lib/CodeGen/RegAllocLinearScan.cpp:1.127 llvm/lib/CodeGen/RegAllocLinearScan.cpp:1.128
--- llvm/lib/CodeGen/RegAllocLinearScan.cpp:1.127 Wed Aug 2 07:30:23 2006
+++ llvm/lib/CodeGen/RegAllocLinearScan.cpp Sun Aug 27 07:54:01 2006
@@ -27,7 +27,7 @@
#include "llvm/ADT/Statistic.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/Support/Debug.h"
-#include "llvm/Support/Visibility.h"
+#include "llvm/Support/Compiler.h"
#include <algorithm>
#include <cmath>
#include <iostream>
Index: llvm/lib/CodeGen/RegAllocLocal.cpp
diff -u llvm/lib/CodeGen/RegAllocLocal.cpp:1.85 llvm/lib/CodeGen/RegAllocLocal.cpp:1.86
--- llvm/lib/CodeGen/RegAllocLocal.cpp:1.85 Wed Aug 2 07:30:23 2006
+++ llvm/lib/CodeGen/RegAllocLocal.cpp Sun Aug 27 07:54:01 2006
@@ -24,7 +24,7 @@
#include "llvm/Target/TargetMachine.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
-#include "llvm/Support/Visibility.h"
+#include "llvm/Support/Compiler.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/Statistic.h"
#include <algorithm>
Index: llvm/lib/CodeGen/RegAllocSimple.cpp
diff -u llvm/lib/CodeGen/RegAllocSimple.cpp:1.72 llvm/lib/CodeGen/RegAllocSimple.cpp:1.73
--- llvm/lib/CodeGen/RegAllocSimple.cpp:1.72 Wed Aug 2 07:30:23 2006
+++ llvm/lib/CodeGen/RegAllocSimple.cpp Sun Aug 27 07:54:01 2006
@@ -24,7 +24,7 @@
#include "llvm/Target/TargetInstrInfo.h"
#include "llvm/Target/TargetMachine.h"
#include "llvm/Support/Debug.h"
-#include "llvm/Support/Visibility.h"
+#include "llvm/Support/Compiler.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/ADT/STLExtras.h"
#include <iostream>
Index: llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
diff -u llvm/lib/CodeGen/TwoAddressInstructionPass.cpp:1.36 llvm/lib/CodeGen/TwoAddressInstructionPass.cpp:1.37
--- llvm/lib/CodeGen/TwoAddressInstructionPass.cpp:1.36 Thu Jul 20 12:28:38 2006
+++ llvm/lib/CodeGen/TwoAddressInstructionPass.cpp Sun Aug 27 07:54:01 2006
@@ -38,7 +38,7 @@
#include "llvm/Target/TargetInstrInfo.h"
#include "llvm/Target/TargetMachine.h"
#include "llvm/Support/Debug.h"
-#include "llvm/Support/Visibility.h"
+#include "llvm/Support/Compiler.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/ADT/STLExtras.h"
#include <iostream>
Index: llvm/lib/CodeGen/UnreachableBlockElim.cpp
diff -u llvm/lib/CodeGen/UnreachableBlockElim.cpp:1.7 llvm/lib/CodeGen/UnreachableBlockElim.cpp:1.8
--- llvm/lib/CodeGen/UnreachableBlockElim.cpp:1.7 Wed Jun 28 18:17:23 2006
+++ llvm/lib/CodeGen/UnreachableBlockElim.cpp Sun Aug 27 07:54:01 2006
@@ -27,7 +27,7 @@
#include "llvm/Pass.h"
#include "llvm/Type.h"
#include "llvm/Support/CFG.h"
-#include "llvm/Support/Visibility.h"
+#include "llvm/Support/Compiler.h"
#include "llvm/ADT/DepthFirstIterator.h"
using namespace llvm;
Index: llvm/lib/CodeGen/VirtRegMap.cpp
diff -u llvm/lib/CodeGen/VirtRegMap.cpp:1.71 llvm/lib/CodeGen/VirtRegMap.cpp:1.72
--- llvm/lib/CodeGen/VirtRegMap.cpp:1.71 Thu Aug 24 17:43:55 2006
+++ llvm/lib/CodeGen/VirtRegMap.cpp Sun Aug 27 07:54:01 2006
@@ -26,7 +26,7 @@
#include "llvm/Target/TargetInstrInfo.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
-#include "llvm/Support/Visibility.h"
+#include "llvm/Support/Compiler.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/ADT/STLExtras.h"
#include <algorithm>
More information about the llvm-commits
mailing list