diff options
-rw-r--r-- | test/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile index f1e18e4945..2dd1423005 100644 --- a/test/Makefile +++ b/test/Makefile @@ -43,9 +43,9 @@ clean : %.bc: %.ll $(AS) $< -f -%.mc: %.bc $(LLC) $(AS) +%.mc: %.ll $(LLC) $(AS) @echo "Generating machine instructions for $<" - $(LLC) $(LLCOPTS) $< > $@ + $(AS) < $< | $(LLC) $(LLCOPTS) > $@ %.s: %.ll $(LLC) $(AS) $(AS) < $< | $(LLC) > $@ |