aboutsummaryrefslogtreecommitdiffstats
path: root/llvm-tblgen-rules.mk
diff options
context:
space:
mode:
authorNowar Gu <nowar100@gmail.com>2011-07-02 10:51:07 +0800
committerNowar Gu <nowar100@gmail.com>2011-07-02 10:51:07 +0800
commitf899bd4a462884aa91b9d0c93ab2dbc605dac116 (patch)
tree4c942e1de9410610b9dfa9a12266f362baeae599 /llvm-tblgen-rules.mk
parent53d48080e55bf0c99cb7ca9de5b15a084d7324b5 (diff)
downloadexternal_llvm-f899bd4a462884aa91b9d0c93ab2dbc605dac116.zip
external_llvm-f899bd4a462884aa91b9d0c93ab2dbc605dac116.tar.gz
external_llvm-f899bd4a462884aa91b9d0c93ab2dbc605dac116.tar.bz2
Fix Android.mk.
Diffstat (limited to 'llvm-tblgen-rules.mk')
-rw-r--r--llvm-tblgen-rules.mk19
1 files changed, 2 insertions, 17 deletions
diff --git a/llvm-tblgen-rules.mk b/llvm-tblgen-rules.mk
index 79d1b0a..3da6950 100644
--- a/llvm-tblgen-rules.mk
+++ b/llvm-tblgen-rules.mk
@@ -28,29 +28,14 @@ ifneq ($(TBLGEN_TD_DIR),)
tblgen_source_dir := $(TBLGEN_TD_DIR)
endif
-ifneq ($(filter %GenRegisterNames.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenRegisterNames.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,register-enums)
-endif
-
-ifneq ($(filter %GenRegisterInfo.h.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenRegisterInfo.h.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,register-desc-header)
-endif
-
ifneq ($(filter %GenRegisterInfo.inc,$(tblgen_gen_tables)),)
$(intermediates)/%GenRegisterInfo.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,register-desc)
-endif
-
-ifneq ($(filter %GenInstrNames.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenInstrNames.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,instr-enums)
+ $(call transform-td-to-out,register-info)
endif
ifneq ($(filter %GenInstrInfo.inc,$(tblgen_gen_tables)),)
$(intermediates)/%GenInstrInfo.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,instr-desc)
+ $(call transform-td-to-out,instr-info)
endif
ifneq ($(filter %GenAsmWriter.inc,$(tblgen_gen_tables)),)