diff options
author | Anshuman Dasgupta <adasgupt@codeaurora.org> | 2011-12-01 21:10:21 +0000 |
---|---|---|
committer | Anshuman Dasgupta <adasgupt@codeaurora.org> | 2011-12-01 21:10:21 +0000 |
commit | dc81e5da271ed394e2029c83458773c4ae2fc5f4 (patch) | |
tree | 60e5798064500b46b1da5386e7e2413d73c8855b /Makefile.rules | |
parent | 18c7ec1344b14c9a483b89f7ee73fba1cbdb2a38 (diff) |
Add a deterministic finite automaton based packetizer for VLIW architectures
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145629 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r-- | Makefile.rules | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.rules b/Makefile.rules index 670a8bb370..974a962102 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -1858,6 +1858,9 @@ $(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir $(LLVM_TBLGEN) $(Echo) "Building $(<F) decoder tables with tblgen" $(Verb) $(LLVMTableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $< +$(ObjDir)/%GenDFAPacketizer.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN) + $(Echo) "Building $(<F) DFA packetizer tables with tblgen" + $(Verb) $(LLVMTableGen) -gen-dfa-packetizer -o $(call SYSPATH, $@) $< clean-local:: -$(Verb) $(RM) -f $(INCFiles) |