1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Generate assembly code for testcodegen.

llvm-svn: 866
This commit is contained in:
Vikram S. Adve 2001-10-18 00:22:14 +00:00
parent 4e61ad56e4
commit 83de705ef7

View File

@ -43,9 +43,9 @@ clean :
%.bc: %.ll
$(AS) $< -f
%.mc: %.ll $(LLC) $(AS)
%.mc: %.bc $(LLC) $(AS)
@echo "Generating machine instructions for $<"
$(AS) < $< | $(LLC) $(LLCOPTS) > $@
$(LLC) $(LLCOPTS) $< > $@
%.s: %.ll $(LLC) $(AS)
$(AS) < $< | $(LLC) > $@