Renamed files:
authorMisha Brukman <brukman+llvm@gmail.com>
Tue, 27 Jul 2004 23:29:16 +0000 (23:29 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Tue, 27 Jul 2004 23:29:16 +0000 (23:29 +0000)
* PowerPCReg.td => PowerPCRegisterinfo.td
* PowerPCInstrs.td => PowerPCInstrInfo.td

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15295 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/PowerPC/Makefile
lib/Target/PowerPC/PPCInstrInfo.td
lib/Target/PowerPC/PPCRegisterInfo.td
lib/Target/PowerPC/PowerPC.td

index 8c3949def7c609d6261e4699cf44420ef6d43c5d..ba9892f02035c4ea933f9f10abba51aaeb89a26d 100644 (file)
@@ -16,31 +16,31 @@ $(SourceDepend): PowerPCGenRegisterInfo.h.inc PowerPCGenRegisterNames.inc \
                  PowerPCGenInstrInfo.inc
 
 PowerPCGenRegisterNames.inc:: $(SourceDir)/PowerPC.td \
-                           $(SourceDir)/PowerPCReg.td \
+                           $(SourceDir)/PowerPCRegisterInfo.td \
                            $(SourceDir)/../Target.td $(TBLGEN)
        @echo "Building PowerPC.td register names with tblgen"
        $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-register-enums -o $@
 
 PowerPCGenRegisterInfo.h.inc:: $(SourceDir)/PowerPC.td \
-                           $(SourceDir)/PowerPCReg.td \
+                           $(SourceDir)/PowerPCRegisterInfo.td \
                            $(SourceDir)/../Target.td $(TBLGEN)
        @echo "Building PowerPC.td register information header with tblgen"
        $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-register-desc-header -o $@
 
 PowerPCGenRegisterInfo.inc:: $(SourceDir)/PowerPC.td \
-                         $(SourceDir)/PowerPCReg.td \
+                         $(SourceDir)/PowerPCRegisterInfo.td \
                          $(SourceDir)/../Target.td $(TBLGEN)
        @echo "Building PowerPC.td register information implementation with tblgen"
        $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-register-desc -o $@
 
 PowerPCGenInstrNames.inc:: $(SourceDir)/PowerPC.td \
-                       $(SourceDir)/PowerPCInstrs.td \
+                       $(SourceDir)/PowerPCInstrInfo.td \
                        $(SourceDir)/../Target.td $(TBLGEN)
        @echo "Building PowerPC.td instruction names with tblgen"
        $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-instr-enums -o $@
 
 PowerPCGenInstrInfo.inc:: $(SourceDir)/PowerPC.td \
-                      $(SourceDir)/PowerPCInstrs.td \
+                      $(SourceDir)/PowerPCInstrInfo.td \
                       $(SourceDir)/../Target.td $(TBLGEN)
        @echo "Building PowerPC.td instruction information with tblgen"
        $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-instr-desc -o $@
index 0a73c66036107c22234d96e0ac51435b5ee83831..6028b8a56d63ad41888999d424e2016803220071 100644 (file)
@@ -1,4 +1,4 @@
-//===- PowerPCInstrInfo.td - Describe the PowerPC Instruction Set -*- C++ -*-=//
+//===- PowerPCInstrInfo.td - The PowerPC Instruction Set -----*- tablegen -*-=//
 // 
 //                     The LLVM Compiler Infrastructure
 //
index 28bfa362eb6e94bbdc92a09945047bc85dadf0d2..aa14417fd9d56e8d1c8ceed9e0af3a168570e62b 100644 (file)
@@ -1,4 +1,4 @@
-//===- PowerPCReg.td - Describe the PowerPC Register File -------*- C++ -*-===//
+//===- PowerPCRegisterInfo.td - The PowerPC Register File --*- tablegen -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
index aac54551d7287e7c74b70c3642524fe840afd223..945bce315d89244f95fcf63804708999b5302f27 100644 (file)
@@ -18,8 +18,8 @@ include "../Target.td"
 // Register File Description
 //===----------------------------------------------------------------------===//
 
-include "PowerPCReg.td"
-include "PowerPCInstrs.td"
+include "PowerPCRegisterInfo.td"
+include "PowerPCInstrInfo.td"
 
 def PowerPCInstrInfo : InstrInfo {
   let PHIInst  = PHI;