diff options
| author | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-27 23:29:16 +0000 | 
|---|---|---|
| committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-27 23:29:16 +0000 | 
| commit | 92ca8eccd8f78bba67c284ec71d79dede901302e (patch) | |
| tree | a08a0c31937bee5153fb7826725fa7473e0dadce /llvm | |
| parent | fa8ab0ab6d0aabf5538a6cb7a2d823e94a0c48ce (diff) | |
| download | bcm5719-llvm-92ca8eccd8f78bba67c284ec71d79dede901302e.tar.gz bcm5719-llvm-92ca8eccd8f78bba67c284ec71d79dede901302e.zip  | |
Renamed files:
* PowerPCReg.td => PowerPCRegisterinfo.td
* PowerPCInstrs.td => PowerPCInstrInfo.td
llvm-svn: 15295
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/PowerPC/Makefile | 10 | ||||
| -rw-r--r-- | llvm/lib/Target/PowerPC/PowerPC.td | 4 | ||||
| -rw-r--r-- | llvm/lib/Target/PowerPC/PowerPCInstrInfo.td | 2 | ||||
| -rw-r--r-- | llvm/lib/Target/PowerPC/PowerPCRegisterInfo.td | 2 | 
4 files changed, 9 insertions, 9 deletions
diff --git a/llvm/lib/Target/PowerPC/Makefile b/llvm/lib/Target/PowerPC/Makefile index 8c3949def7c..ba9892f0203 100644 --- a/llvm/lib/Target/PowerPC/Makefile +++ b/llvm/lib/Target/PowerPC/Makefile @@ -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 $@ diff --git a/llvm/lib/Target/PowerPC/PowerPC.td b/llvm/lib/Target/PowerPC/PowerPC.td index aac54551d72..945bce315d8 100644 --- a/llvm/lib/Target/PowerPC/PowerPC.td +++ b/llvm/lib/Target/PowerPC/PowerPC.td @@ -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; diff --git a/llvm/lib/Target/PowerPC/PowerPCInstrInfo.td b/llvm/lib/Target/PowerPC/PowerPCInstrInfo.td index 0a73c660361..6028b8a56d6 100644 --- a/llvm/lib/Target/PowerPC/PowerPCInstrInfo.td +++ b/llvm/lib/Target/PowerPC/PowerPCInstrInfo.td @@ -1,4 +1,4 @@ -//===- PowerPCInstrInfo.td - Describe the PowerPC Instruction Set -*- C++ -*-=// +//===- PowerPCInstrInfo.td - The PowerPC Instruction Set -----*- tablegen -*-=//  //   //                     The LLVM Compiler Infrastructure  // diff --git a/llvm/lib/Target/PowerPC/PowerPCRegisterInfo.td b/llvm/lib/Target/PowerPC/PowerPCRegisterInfo.td index 28bfa362eb6..aa14417fd9d 100644 --- a/llvm/lib/Target/PowerPC/PowerPCRegisterInfo.td +++ b/llvm/lib/Target/PowerPC/PowerPCRegisterInfo.td @@ -1,4 +1,4 @@ -//===- PowerPCReg.td - Describe the PowerPC Register File -------*- C++ -*-===// +//===- PowerPCRegisterInfo.td - The PowerPC Register File --*- tablegen -*-===//  //   //                     The LLVM Compiler Infrastructure  //  | 

