diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-16 20:31:13 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-16 20:31:13 +0000 |
commit | 039ba763d1da901bcd1ef0020a2aa97704c7962a (patch) | |
tree | 711f37511a9cf196d5d765a0809b7c4b908cca1c | |
parent | da2b13f694b3866b7201b6ab9596981c9eaab983 (diff) | |
download | external_llvm-039ba763d1da901bcd1ef0020a2aa97704c7962a.zip external_llvm-039ba763d1da901bcd1ef0020a2aa97704c7962a.tar.gz external_llvm-039ba763d1da901bcd1ef0020a2aa97704c7962a.tar.bz2 |
The generated instruction selector isn't (yet) functional
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14894 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/PowerPC/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/Target/PowerPC/Makefile b/lib/Target/PowerPC/Makefile index ef9fff7..8c3949d 100644 --- a/lib/Target/PowerPC/Makefile +++ b/lib/Target/PowerPC/Makefile @@ -13,7 +13,7 @@ include $(LEVEL)/Makefile.common # Make sure that tblgen is run, first thing. $(SourceDepend): PowerPCGenRegisterInfo.h.inc PowerPCGenRegisterNames.inc \ PowerPCGenRegisterInfo.inc PowerPCGenInstrNames.inc \ - PowerPCGenInstrInfo.inc PowerPCGenInstrSelector.inc + PowerPCGenInstrInfo.inc PowerPCGenRegisterNames.inc:: $(SourceDir)/PowerPC.td \ $(SourceDir)/PowerPCReg.td \ @@ -45,11 +45,5 @@ PowerPCGenInstrInfo.inc:: $(SourceDir)/PowerPC.td \ @echo "Building PowerPC.td instruction information with tblgen" $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-instr-desc -o $@ -PowerPCGenInstrSelector.inc:: $(SourceDir)/PowerPC.td \ - $(SourceDir)/PowerPCInstrs.td \ - $(SourceDir)/../Target.td $(TBLGEN) - @echo "Building PowerPC.td instruction selector with tblgen" - $(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-instr-selector -o $@ - clean:: $(VERB) rm -f *.inc |