[llvm] r211390 - [Make] Fix dependencies for td.expanded

Adam Nemet anemet at apple.com
Fri Jun 20 12:00:41 PDT 2014


Author: anemet
Date: Fri Jun 20 14:00:41 2014
New Revision: 211390

URL: http://llvm.org/viewvc/llvm-project?rev=211390&view=rev
Log:
[Make] Fix dependencies for td.expanded

Depend on all the .td files not just the main one.

Modified:
    llvm/trunk/Makefile.rules

Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=211390&r1=211389&r2=211390&view=diff
==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Fri Jun 20 14:00:41 2014
@@ -1725,7 +1725,7 @@ $(ObjDir)/%GenDFAPacketizer.inc.tmp : %.
 
 # Dump all the records to <target>.td.expanded.  This is useful for debugging.
 $(TARGET:%=%.td.expanded): \
-%.td.expanded : %.td $(LLVM_TBLGEN)
+%.td.expanded : %.td $(LLVM_TBLGEN) $(TDFiles)
 	$(Echo) "Building a fully expanded version of $(<F)"
 	$(Verb) $(LLVMTableGen) -o $(call SYSPATH, $@) $<
 





More information about the llvm-commits mailing list