[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp PPCBranchSelector.cpp PPCCodeEmitter.cpp PPCISelDAGToDAG.cpp PPCISelLowering.cpp PPCISelPattern.cpp PPCInstrInfo.cpp PPCInstrInfo.h PPCJITInfo.cpp PPCRegisterInfo.cpp PPCTargetMachine.cpp PPCTargetMachine.h
Chris Lattner
lattner at cs.uiuc.edu
Fri Oct 14 16:59:17 PDT 2005
Changes in directory llvm/lib/Target/PowerPC:
PPCAsmPrinter.cpp updated: 1.97 -> 1.98
PPCBranchSelector.cpp updated: 1.18 -> 1.19
PPCCodeEmitter.cpp updated: 1.37 -> 1.38
PPCISelDAGToDAG.cpp updated: 1.102 -> 1.103
PPCISelLowering.cpp updated: 1.29 -> 1.30
PPCISelPattern.cpp updated: 1.186 -> 1.187
PPCInstrInfo.cpp updated: 1.9 -> 1.10
PPCInstrInfo.h updated: 1.5 -> 1.6
PPCJITInfo.cpp updated: 1.15 -> 1.16
PPCRegisterInfo.cpp updated: 1.32 -> 1.33
PPCTargetMachine.cpp updated: 1.72 -> 1.73
PPCTargetMachine.h updated: 1.11 -> 1.12
---
Log message:
Rename PPC32*.h to PPC*.h
This completes the grand PPC file renaming
---
Diffs of the changes: (+16 -17)
PPCAsmPrinter.cpp | 2 +-
PPCBranchSelector.cpp | 2 +-
PPCCodeEmitter.cpp | 4 ++--
PPCISelDAGToDAG.cpp | 4 ++--
PPCISelLowering.cpp | 4 ++--
PPCISelPattern.cpp | 5 ++---
PPCInstrInfo.cpp | 2 +-
PPCInstrInfo.h | 2 +-
PPCJITInfo.cpp | 2 +-
PPCRegisterInfo.cpp | 2 +-
PPCTargetMachine.cpp | 2 +-
PPCTargetMachine.h | 2 +-
12 files changed, 16 insertions(+), 17 deletions(-)
Index: llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
diff -u llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.97 llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.98
--- llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.97 Fri Oct 14 18:51:18 2005
+++ llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp Fri Oct 14 18:59:06 2005
@@ -18,7 +18,7 @@
#define DEBUG_TYPE "asmprinter"
#include "PPC.h"
-#include "PPC32TargetMachine.h"
+#include "PPCTargetMachine.h"
#include "PPCSubtarget.h"
#include "llvm/Constants.h"
#include "llvm/DerivedTypes.h"
Index: llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
diff -u llvm/lib/Target/PowerPC/PPCBranchSelector.cpp:1.18 llvm/lib/Target/PowerPC/PPCBranchSelector.cpp:1.19
--- llvm/lib/Target/PowerPC/PPCBranchSelector.cpp:1.18 Fri Oct 14 18:51:18 2005
+++ llvm/lib/Target/PowerPC/PPCBranchSelector.cpp Fri Oct 14 18:59:06 2005
@@ -18,7 +18,7 @@
#define DEBUG_TYPE "bsel"
#include "PPC.h"
#include "PPCInstrBuilder.h"
-#include "PPC32InstrInfo.h"
+#include "PPCInstrInfo.h"
#include "llvm/CodeGen/MachineFunctionPass.h"
#include "llvm/Support/Debug.h"
#include <map>
Index: llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp
diff -u llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp:1.37 llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp:1.38
--- llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp:1.37 Fri Oct 14 18:51:18 2005
+++ llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp Fri Oct 14 18:59:06 2005
@@ -12,8 +12,8 @@
//
//===----------------------------------------------------------------------===//
-#include "PPC32TargetMachine.h"
-#include "PPC32Relocations.h"
+#include "PPCTargetMachine.h"
+#include "PPCRelocations.h"
#include "PPC.h"
#include "llvm/Module.h"
#include "llvm/CodeGen/MachineCodeEmitter.h"
Index: llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
diff -u llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp:1.102 llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp:1.103
--- llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp:1.102 Fri Oct 14 18:51:18 2005
+++ llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp Fri Oct 14 18:59:06 2005
@@ -13,8 +13,8 @@
//===----------------------------------------------------------------------===//
#include "PPC.h"
-#include "PPC32TargetMachine.h"
-#include "PPC32ISelLowering.h"
+#include "PPCTargetMachine.h"
+#include "PPCISelLowering.h"
#include "llvm/CodeGen/MachineInstrBuilder.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/SSARegMap.h"
Index: llvm/lib/Target/PowerPC/PPCISelLowering.cpp
diff -u llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.29 llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.30
--- llvm/lib/Target/PowerPC/PPCISelLowering.cpp:1.29 Sun Oct 2 01:37:13 2005
+++ llvm/lib/Target/PowerPC/PPCISelLowering.cpp Fri Oct 14 18:59:06 2005
@@ -11,8 +11,8 @@
//
//===----------------------------------------------------------------------===//
-#include "PPC32ISelLowering.h"
-#include "PPC32TargetMachine.h"
+#include "PPCISelLowering.h"
+#include "PPCTargetMachine.h"
#include "llvm/CodeGen/MachineFrameInfo.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/MachineInstrBuilder.h"
Index: llvm/lib/Target/PowerPC/PPCISelPattern.cpp
diff -u llvm/lib/Target/PowerPC/PPCISelPattern.cpp:1.186 llvm/lib/Target/PowerPC/PPCISelPattern.cpp:1.187
--- llvm/lib/Target/PowerPC/PPCISelPattern.cpp:1.186 Fri Oct 14 18:51:18 2005
+++ llvm/lib/Target/PowerPC/PPCISelPattern.cpp Fri Oct 14 18:59:06 2005
@@ -15,9 +15,8 @@
#include "PPC.h"
#include "PPCInstrBuilder.h"
-#include "PPC32InstrInfo.h"
-#include "PPC32TargetMachine.h"
-#include "PPC32ISelLowering.h"
+#include "PPCTargetMachine.h"
+#include "PPCISelLowering.h"
#include "llvm/Constants.h"
#include "llvm/Function.h"
#include "llvm/CodeGen/MachineConstantPool.h"
Index: llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
diff -u llvm/lib/Target/PowerPC/PPCInstrInfo.cpp:1.9 llvm/lib/Target/PowerPC/PPCInstrInfo.cpp:1.10
--- llvm/lib/Target/PowerPC/PPCInstrInfo.cpp:1.9 Fri Oct 14 18:51:18 2005
+++ llvm/lib/Target/PowerPC/PPCInstrInfo.cpp Fri Oct 14 18:59:06 2005
@@ -11,7 +11,7 @@
//
//===----------------------------------------------------------------------===//
-#include "PPC32InstrInfo.h"
+#include "PPCInstrInfo.h"
#include "PPCGenInstrInfo.inc"
#include "PPC.h"
#include "llvm/CodeGen/MachineInstrBuilder.h"
Index: llvm/lib/Target/PowerPC/PPCInstrInfo.h
diff -u llvm/lib/Target/PowerPC/PPCInstrInfo.h:1.5 llvm/lib/Target/PowerPC/PPCInstrInfo.h:1.6
--- llvm/lib/Target/PowerPC/PPCInstrInfo.h:1.5 Fri Oct 14 18:51:18 2005
+++ llvm/lib/Target/PowerPC/PPCInstrInfo.h Fri Oct 14 18:59:06 2005
@@ -16,7 +16,7 @@
#include "PPC.h"
#include "llvm/Target/TargetInstrInfo.h"
-#include "PPC32RegisterInfo.h"
+#include "PPCRegisterInfo.h"
namespace llvm {
Index: llvm/lib/Target/PowerPC/PPCJITInfo.cpp
diff -u llvm/lib/Target/PowerPC/PPCJITInfo.cpp:1.15 llvm/lib/Target/PowerPC/PPCJITInfo.cpp:1.16
--- llvm/lib/Target/PowerPC/PPCJITInfo.cpp:1.15 Fri Oct 14 18:53:41 2005
+++ llvm/lib/Target/PowerPC/PPCJITInfo.cpp Fri Oct 14 18:59:06 2005
@@ -13,7 +13,7 @@
#define DEBUG_TYPE "jit"
#include "PPCJITInfo.h"
-#include "PPC32Relocations.h"
+#include "PPCRelocations.h"
#include "llvm/CodeGen/MachineCodeEmitter.h"
#include "llvm/Config/alloca.h"
#include <set>
Index: llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
diff -u llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp:1.32 llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp:1.33
--- llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp:1.32 Fri Oct 14 18:51:18 2005
+++ llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp Fri Oct 14 18:59:06 2005
@@ -14,7 +14,7 @@
#define DEBUG_TYPE "reginfo"
#include "PPC.h"
#include "PPCInstrBuilder.h"
-#include "PPC32RegisterInfo.h"
+#include "PPCRegisterInfo.h"
#include "llvm/Constants.h"
#include "llvm/Type.h"
#include "llvm/CodeGen/ValueTypes.h"
Index: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
diff -u llvm/lib/Target/PowerPC/PPCTargetMachine.cpp:1.72 llvm/lib/Target/PowerPC/PPCTargetMachine.cpp:1.73
--- llvm/lib/Target/PowerPC/PPCTargetMachine.cpp:1.72 Fri Oct 14 18:53:41 2005
+++ llvm/lib/Target/PowerPC/PPCTargetMachine.cpp Fri Oct 14 18:59:06 2005
@@ -13,7 +13,7 @@
#include "PPC.h"
#include "PPCFrameInfo.h"
-#include "PPC32TargetMachine.h"
+#include "PPCTargetMachine.h"
#include "PPCJITInfo.h"
#include "llvm/Module.h"
#include "llvm/PassManager.h"
Index: llvm/lib/Target/PowerPC/PPCTargetMachine.h
diff -u llvm/lib/Target/PowerPC/PPCTargetMachine.h:1.11 llvm/lib/Target/PowerPC/PPCTargetMachine.h:1.12
--- llvm/lib/Target/PowerPC/PPCTargetMachine.h:1.11 Fri Oct 14 18:53:41 2005
+++ llvm/lib/Target/PowerPC/PPCTargetMachine.h Fri Oct 14 18:59:06 2005
@@ -17,7 +17,7 @@
#include "PPCFrameInfo.h"
#include "PPCSubtarget.h"
#include "PPCJITInfo.h"
-#include "PPC32InstrInfo.h"
+#include "PPCInstrInfo.h"
#include "llvm/Target/TargetMachine.h"
#include "llvm/Target/TargetFrameInfo.h"
#include "llvm/PassManager.h"
More information about the llvm-commits
mailing list