summaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-09-07 22:13:44 +0000
committerChris Lattner <sabre@nondot.org>2001-09-07 22:13:44 +0000
commit5341e214d993c75e5e4b34b0c848ce008ae68340 (patch)
tree66140899005d410d09680185af473043269ca9de /test/Makefile
parenta105022a7853e3846f6720986d70bd3d426ff03f (diff)
downloadexternal_llvm-5341e214d993c75e5e4b34b0c848ce008ae68340.zip
external_llvm-5341e214d993c75e5e4b34b0c848ce008ae68340.tar.gz
external_llvm-5341e214d993c75e5e4b34b0c848ce008ae68340.tar.bz2
Add llc path to setup
Make code gen simpler, don't drop extra files all over the place git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@494 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/Makefile b/test/Makefile
index 247450c..1d43f8b 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -33,10 +33,10 @@ clean :
@echo "Running optimizier test on $<"
@./TestOptimizer.sh $<
-%.bc: %.ll $(AS)
- rm -f $@
- $(AS) $<
+%.bc: %.ll
+ $(AS) $< -f
-%.mc: %.bc $(LLC)
+%.mc: %.ll
@echo "Generating machine instructions for $<"
- $(LLC) $(LLCOPTS) $< > $@
+ $(AS) < $< | $(LLC) -dsched=t > $@
+