[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPC32ISelLowering.h PPC32InstrInfo.h PPC32JITInfo.h PPC32RegisterInfo.h PPC32TargetMachine.h PPCAsmPrinter.cpp PPCBranchSelector.cpp PPCCodeEmitter.cpp PPCFrameInfo.h PPCISelDAGToDAG.cpp PPCISelPattern.cpp PPCInstrInfo.cpp PPCRegisterInfo.cpp PPCSubtarget.cpp PPCTargetMachine.cpp
Chris Lattner
lattner at cs.uiuc.edu
Fri Oct 14 16:51:29 PDT 2005
Changes in directory llvm/lib/Target/PowerPC:
PPC32ISelLowering.h updated: 1.6 -> 1.7
PPC32InstrInfo.h updated: 1.4 -> 1.5
PPC32JITInfo.h updated: 1.6 -> 1.7
PPC32RegisterInfo.h updated: 1.7 -> 1.8
PPC32TargetMachine.h updated: 1.9 -> 1.10
PPCAsmPrinter.cpp updated: 1.96 -> 1.97
PPCBranchSelector.cpp updated: 1.17 -> 1.18
PPCCodeEmitter.cpp updated: 1.36 -> 1.37
PPCFrameInfo.h updated: 1.7 -> 1.8
PPCISelDAGToDAG.cpp updated: 1.101 -> 1.102
PPCISelPattern.cpp updated: 1.185 -> 1.186
PPCInstrInfo.cpp updated: 1.8 -> 1.9
PPCRegisterInfo.cpp updated: 1.31 -> 1.32
PPCSubtarget.cpp updated: 1.8 -> 1.9
PPCTargetMachine.cpp updated: 1.70 -> 1.71
---
Log message:
Rename PowerPC*.h to PPC*.h
---
Diffs of the changes: (+19 -19)
PPC32ISelLowering.h | 2 +-
PPC32InstrInfo.h | 2 +-
PPC32JITInfo.h | 2 +-
PPC32RegisterInfo.h | 2 +-
PPC32TargetMachine.h | 4 ++--
PPCAsmPrinter.cpp | 4 ++--
PPCBranchSelector.cpp | 2 +-
PPCCodeEmitter.cpp | 2 +-
PPCFrameInfo.h | 2 +-
PPCISelDAGToDAG.cpp | 2 +-
PPCISelPattern.cpp | 2 +-
PPCInstrInfo.cpp | 2 +-
PPCRegisterInfo.cpp | 2 +-
PPCSubtarget.cpp | 4 ++--
PPCTargetMachine.cpp | 4 ++--
15 files changed, 19 insertions(+), 19 deletions(-)
Index: llvm/lib/Target/PowerPC/PPC32ISelLowering.h
diff -u llvm/lib/Target/PowerPC/PPC32ISelLowering.h:1.6 llvm/lib/Target/PowerPC/PPC32ISelLowering.h:1.7
--- llvm/lib/Target/PowerPC/PPC32ISelLowering.h:1.6 Tue Sep 6 17:03:27 2005
+++ llvm/lib/Target/PowerPC/PPC32ISelLowering.h Fri Oct 14 18:51:18 2005
@@ -17,7 +17,7 @@
#include "llvm/Target/TargetLowering.h"
#include "llvm/CodeGen/SelectionDAG.h"
-#include "PowerPC.h"
+#include "PPC.h"
namespace llvm {
namespace PPCISD {
Index: llvm/lib/Target/PowerPC/PPC32InstrInfo.h
diff -u llvm/lib/Target/PowerPC/PPC32InstrInfo.h:1.4 llvm/lib/Target/PowerPC/PPC32InstrInfo.h:1.5
--- llvm/lib/Target/PowerPC/PPC32InstrInfo.h:1.4 Fri Oct 14 17:44:13 2005
+++ llvm/lib/Target/PowerPC/PPC32InstrInfo.h Fri Oct 14 18:51:18 2005
@@ -14,7 +14,7 @@
#ifndef POWERPC32_INSTRUCTIONINFO_H
#define POWERPC32_INSTRUCTIONINFO_H
-#include "PowerPC.h"
+#include "PPC.h"
#include "llvm/Target/TargetInstrInfo.h"
#include "PPC32RegisterInfo.h"
Index: llvm/lib/Target/PowerPC/PPC32JITInfo.h
diff -u llvm/lib/Target/PowerPC/PPC32JITInfo.h:1.6 llvm/lib/Target/PowerPC/PPC32JITInfo.h:1.7
--- llvm/lib/Target/PowerPC/PPC32JITInfo.h:1.6 Fri Jul 22 15:49:37 2005
+++ llvm/lib/Target/PowerPC/PPC32JITInfo.h Fri Oct 14 18:51:18 2005
@@ -14,7 +14,7 @@
#ifndef POWERPC_DARWIN_JITINFO_H
#define POWERPC_DARWIN_JITINFO_H
-#include "PowerPCJITInfo.h"
+#include "PPCJITInfo.h"
namespace llvm {
class TargetMachine;
Index: llvm/lib/Target/PowerPC/PPC32RegisterInfo.h
diff -u llvm/lib/Target/PowerPC/PPC32RegisterInfo.h:1.7 llvm/lib/Target/PowerPC/PPC32RegisterInfo.h:1.8
--- llvm/lib/Target/PowerPC/PPC32RegisterInfo.h:1.7 Fri Oct 14 18:37:35 2005
+++ llvm/lib/Target/PowerPC/PPC32RegisterInfo.h Fri Oct 14 18:51:18 2005
@@ -14,7 +14,7 @@
#ifndef POWERPC32_REGISTERINFO_H
#define POWERPC32_REGISTERINFO_H
-#include "PowerPC.h"
+#include "PPC.h"
#include "PPCGenRegisterInfo.h.inc"
#include <map>
Index: llvm/lib/Target/PowerPC/PPC32TargetMachine.h
diff -u llvm/lib/Target/PowerPC/PPC32TargetMachine.h:1.9 llvm/lib/Target/PowerPC/PPC32TargetMachine.h:1.10
--- llvm/lib/Target/PowerPC/PPC32TargetMachine.h:1.9 Fri Oct 14 18:44:05 2005
+++ llvm/lib/Target/PowerPC/PPC32TargetMachine.h Fri Oct 14 18:51:18 2005
@@ -14,8 +14,8 @@
#ifndef POWERPC32_TARGETMACHINE_H
#define POWERPC32_TARGETMACHINE_H
-#include "PowerPCFrameInfo.h"
-#include "PowerPCSubtarget.h"
+#include "PPCFrameInfo.h"
+#include "PPCSubtarget.h"
#include "PPC32JITInfo.h"
#include "PPC32InstrInfo.h"
#include "llvm/Target/TargetMachine.h"
Index: llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
diff -u llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.96 llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.97
--- llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.96 Fri Oct 14 18:44:05 2005
+++ llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp Fri Oct 14 18:51:18 2005
@@ -17,9 +17,9 @@
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "asmprinter"
-#include "PowerPC.h"
+#include "PPC.h"
#include "PPC32TargetMachine.h"
-#include "PowerPCSubtarget.h"
+#include "PPCSubtarget.h"
#include "llvm/Constants.h"
#include "llvm/DerivedTypes.h"
#include "llvm/Module.h"
Index: llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
diff -u llvm/lib/Target/PowerPC/PPCBranchSelector.cpp:1.17 llvm/lib/Target/PowerPC/PPCBranchSelector.cpp:1.18
--- llvm/lib/Target/PowerPC/PPCBranchSelector.cpp:1.17 Fri Oct 14 18:45:43 2005
+++ llvm/lib/Target/PowerPC/PPCBranchSelector.cpp Fri Oct 14 18:51:18 2005
@@ -16,7 +16,7 @@
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "bsel"
-#include "PowerPC.h"
+#include "PPC.h"
#include "PPCInstrBuilder.h"
#include "PPC32InstrInfo.h"
#include "llvm/CodeGen/MachineFunctionPass.h"
Index: llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp
diff -u llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp:1.36 llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp:1.37
--- llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp:1.36 Fri Oct 14 18:37:35 2005
+++ llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp Fri Oct 14 18:51:18 2005
@@ -14,7 +14,7 @@
#include "PPC32TargetMachine.h"
#include "PPC32Relocations.h"
-#include "PowerPC.h"
+#include "PPC.h"
#include "llvm/Module.h"
#include "llvm/CodeGen/MachineCodeEmitter.h"
#include "llvm/CodeGen/MachineFunctionPass.h"
Index: llvm/lib/Target/PowerPC/PPCFrameInfo.h
diff -u llvm/lib/Target/PowerPC/PPCFrameInfo.h:1.7 llvm/lib/Target/PowerPC/PPCFrameInfo.h:1.8
--- llvm/lib/Target/PowerPC/PPCFrameInfo.h:1.7 Thu Apr 21 18:20:02 2005
+++ llvm/lib/Target/PowerPC/PPCFrameInfo.h Fri Oct 14 18:51:18 2005
@@ -13,7 +13,7 @@
#ifndef POWERPC_FRAMEINFO_H
#define POWERPC_FRAMEINFO_H
-#include "PowerPC.h"
+#include "PPC.h"
#include "llvm/Target/TargetFrameInfo.h"
#include "llvm/Target/TargetMachine.h"
Index: llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
diff -u llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp:1.101 llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp:1.102
--- llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp:1.101 Fri Oct 14 18:37:35 2005
+++ llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp Fri Oct 14 18:51:18 2005
@@ -12,7 +12,7 @@
//
//===----------------------------------------------------------------------===//
-#include "PowerPC.h"
+#include "PPC.h"
#include "PPC32TargetMachine.h"
#include "PPC32ISelLowering.h"
#include "llvm/CodeGen/MachineInstrBuilder.h"
Index: llvm/lib/Target/PowerPC/PPCISelPattern.cpp
diff -u llvm/lib/Target/PowerPC/PPCISelPattern.cpp:1.185 llvm/lib/Target/PowerPC/PPCISelPattern.cpp:1.186
--- llvm/lib/Target/PowerPC/PPCISelPattern.cpp:1.185 Fri Oct 14 18:45:43 2005
+++ llvm/lib/Target/PowerPC/PPCISelPattern.cpp Fri Oct 14 18:51:18 2005
@@ -13,7 +13,7 @@
//
//===----------------------------------------------------------------------===//
-#include "PowerPC.h"
+#include "PPC.h"
#include "PPCInstrBuilder.h"
#include "PPC32InstrInfo.h"
#include "PPC32TargetMachine.h"
Index: llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
diff -u llvm/lib/Target/PowerPC/PPCInstrInfo.cpp:1.8 llvm/lib/Target/PowerPC/PPCInstrInfo.cpp:1.9
--- llvm/lib/Target/PowerPC/PPCInstrInfo.cpp:1.8 Fri Oct 14 18:37:35 2005
+++ llvm/lib/Target/PowerPC/PPCInstrInfo.cpp Fri Oct 14 18:51:18 2005
@@ -13,7 +13,7 @@
#include "PPC32InstrInfo.h"
#include "PPCGenInstrInfo.inc"
-#include "PowerPC.h"
+#include "PPC.h"
#include "llvm/CodeGen/MachineInstrBuilder.h"
#include <iostream>
using namespace llvm;
Index: llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
diff -u llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp:1.31 llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp:1.32
--- llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp:1.31 Fri Oct 14 18:45:43 2005
+++ llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp Fri Oct 14 18:51:18 2005
@@ -12,7 +12,7 @@
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "reginfo"
-#include "PowerPC.h"
+#include "PPC.h"
#include "PPCInstrBuilder.h"
#include "PPC32RegisterInfo.h"
#include "llvm/Constants.h"
Index: llvm/lib/Target/PowerPC/PPCSubtarget.cpp
diff -u llvm/lib/Target/PowerPC/PPCSubtarget.cpp:1.8 llvm/lib/Target/PowerPC/PPCSubtarget.cpp:1.9
--- llvm/lib/Target/PowerPC/PPCSubtarget.cpp:1.8 Wed Sep 7 00:45:33 2005
+++ llvm/lib/Target/PowerPC/PPCSubtarget.cpp Fri Oct 14 18:51:18 2005
@@ -11,8 +11,8 @@
//
//===----------------------------------------------------------------------===//
-#include "PowerPCSubtarget.h"
-#include "PowerPC.h"
+#include "PPCSubtarget.h"
+#include "PPC.h"
#include "llvm/Module.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Target/SubtargetFeature.h"
Index: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
diff -u llvm/lib/Target/PowerPC/PPCTargetMachine.cpp:1.70 llvm/lib/Target/PowerPC/PPCTargetMachine.cpp:1.71
--- llvm/lib/Target/PowerPC/PPCTargetMachine.cpp:1.70 Fri Oct 14 18:44:05 2005
+++ llvm/lib/Target/PowerPC/PPCTargetMachine.cpp Fri Oct 14 18:51:18 2005
@@ -11,8 +11,8 @@
//
//===----------------------------------------------------------------------===//
-#include "PowerPC.h"
-#include "PowerPCFrameInfo.h"
+#include "PPC.h"
+#include "PPCFrameInfo.h"
#include "PPC32TargetMachine.h"
#include "PPC32JITInfo.h"
#include "llvm/Module.h"
More information about the llvm-commits
mailing list