diff options
author | Chris Lattner <sabre@nondot.org> | 2005-10-14 23:59:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-10-14 23:59:06 +0000 |
commit | 6f3b9546629e5c0d1eabbf94aabff74a04df33e9 (patch) | |
tree | 3b94d722f3b82bd730138b0ac652aed67449e746 /llvm/lib/Target | |
parent | 0aa794ba5baaf96ff9225d55c57f9115e9211c81 (diff) | |
download | bcm5719-llvm-6f3b9546629e5c0d1eabbf94aabff74a04df33e9.tar.gz bcm5719-llvm-6f3b9546629e5c0d1eabbf94aabff74a04df33e9.zip |
Rename PPC32*.h to PPC*.h
This completes the grand PPC file renaming
llvm-svn: 23745
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCBranchSelector.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp (renamed from llvm/lib/Target/PowerPC/PPC32CodeEmitter.cpp) | 4 | ||||
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp | 4 | ||||
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 4 | ||||
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelPattern.cpp (renamed from llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp) | 5 | ||||
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCInstrInfo.cpp (renamed from llvm/lib/Target/PowerPC/PPC32InstrInfo.cpp) | 2 | ||||
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCInstrInfo.h (renamed from llvm/lib/Target/PowerPC/PPC32InstrInfo.h) | 2 | ||||
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCJITInfo.cpp (renamed from llvm/lib/Target/PowerPC/PPC32JITInfo.cpp) | 2 | ||||
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp (renamed from llvm/lib/Target/PowerPC/PPC32RegisterInfo.cpp) | 2 | ||||
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCRegisterInfo.h (renamed from llvm/lib/Target/PowerPC/PPC32RegisterInfo.h) | 0 | ||||
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCRelocations.h (renamed from llvm/lib/Target/PowerPC/PPC32Relocations.h) | 0 | ||||
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCTargetMachine.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCTargetMachine.h (renamed from llvm/lib/Target/PowerPC/PPC32TargetMachine.h) | 2 |
14 files changed, 16 insertions, 17 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp b/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp index 1c6196cc2d5..670bc789c15 100644 --- a/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp +++ b/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp @@ -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" diff --git a/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp b/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp index e4b65c49340..0c07d816218 100644 --- a/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp +++ b/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp @@ -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> diff --git a/llvm/lib/Target/PowerPC/PPC32CodeEmitter.cpp b/llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp index ad7ff492f3f..5045c68ef12 100644 --- a/llvm/lib/Target/PowerPC/PPC32CodeEmitter.cpp +++ b/llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp @@ -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" diff --git a/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp b/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp index 8c566ab7f0c..8396da66db2 100644 --- a/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp @@ -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" diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp index 9bab6ed8be3..604ff2fbec3 100644 --- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp @@ -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" diff --git a/llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp b/llvm/lib/Target/PowerPC/PPCISelPattern.cpp index a1f6b1c3c0a..6fb119c862b 100644 --- a/llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelPattern.cpp @@ -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" diff --git a/llvm/lib/Target/PowerPC/PPC32InstrInfo.cpp b/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp index 46f8a72fe03..314b7481263 100644 --- a/llvm/lib/Target/PowerPC/PPC32InstrInfo.cpp +++ b/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp @@ -11,7 +11,7 @@ // //===----------------------------------------------------------------------===// -#include "PPC32InstrInfo.h" +#include "PPCInstrInfo.h" #include "PPCGenInstrInfo.inc" #include "PPC.h" #include "llvm/CodeGen/MachineInstrBuilder.h" diff --git a/llvm/lib/Target/PowerPC/PPC32InstrInfo.h b/llvm/lib/Target/PowerPC/PPCInstrInfo.h index a6cf5ad1b42..631bce11353 100644 --- a/llvm/lib/Target/PowerPC/PPC32InstrInfo.h +++ b/llvm/lib/Target/PowerPC/PPCInstrInfo.h @@ -16,7 +16,7 @@ #include "PPC.h" #include "llvm/Target/TargetInstrInfo.h" -#include "PPC32RegisterInfo.h" +#include "PPCRegisterInfo.h" namespace llvm { diff --git a/llvm/lib/Target/PowerPC/PPC32JITInfo.cpp b/llvm/lib/Target/PowerPC/PPCJITInfo.cpp index c17dd265e59..30455606e77 100644 --- a/llvm/lib/Target/PowerPC/PPC32JITInfo.cpp +++ b/llvm/lib/Target/PowerPC/PPCJITInfo.cpp @@ -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> diff --git a/llvm/lib/Target/PowerPC/PPC32RegisterInfo.cpp b/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp index aad9861cd78..8e2e19f75ae 100644 --- a/llvm/lib/Target/PowerPC/PPC32RegisterInfo.cpp +++ b/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp @@ -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" diff --git a/llvm/lib/Target/PowerPC/PPC32RegisterInfo.h b/llvm/lib/Target/PowerPC/PPCRegisterInfo.h index e9ef9ce2eef..e9ef9ce2eef 100644 --- a/llvm/lib/Target/PowerPC/PPC32RegisterInfo.h +++ b/llvm/lib/Target/PowerPC/PPCRegisterInfo.h diff --git a/llvm/lib/Target/PowerPC/PPC32Relocations.h b/llvm/lib/Target/PowerPC/PPCRelocations.h index f6c9384d7d5..f6c9384d7d5 100644 --- a/llvm/lib/Target/PowerPC/PPC32Relocations.h +++ b/llvm/lib/Target/PowerPC/PPCRelocations.h diff --git a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp index ce759d08959..a222f8c66fa 100644 --- a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -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" diff --git a/llvm/lib/Target/PowerPC/PPC32TargetMachine.h b/llvm/lib/Target/PowerPC/PPCTargetMachine.h index 0df2ac7281f..33180cdecf9 100644 --- a/llvm/lib/Target/PowerPC/PPC32TargetMachine.h +++ b/llvm/lib/Target/PowerPC/PPCTargetMachine.h @@ -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" |