summaryrefslogtreecommitdiff
path: root/test/Makefile.tests
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-10-14 06:12:10 +0000
committerChris Lattner <sabre@nondot.org>2002-10-14 06:12:10 +0000
commit5f8bd7d966a19e5ef20319d1d94c8f02b42f338e (patch)
tree6c89af459bf0a30987d8d5ab78fc80ef51408617 /test/Makefile.tests
parent6463e0df859c2ec521cac2a586b6b693b8f769fd (diff)
downloadllvm-5f8bd7d966a19e5ef20319d1d94c8f02b42f338e.tar.gz
llvm-5f8bd7d966a19e5ef20319d1d94c8f02b42f338e.tar.bz2
llvm-5f8bd7d966a19e5ef20319d1d94c8f02b42f338e.tar.xz
MAke sure llc output is regenerated if the LLC binary changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4164 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile.tests')
-rw-r--r--test/Makefile.tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests
index 1b9a413595..a26b0cda60 100644
--- a/test/Makefile.tests
+++ b/test/Makefile.tests
@@ -90,7 +90,7 @@ Output/%.bc: %.ll $(LAS) Output/.dir
# Compile a linked program to machine code for this processor.
#
-Output/%.llc.s: Output/%.llvm.bc
+Output/%.llc.s: Output/%.llvm.bc $(LLC)
$(LLC) $(LLCFLAGS) -f $< -o $@
# Assemble (and link) an LLVM-linked program using the system assembler...