diff --git a/test/Makefile b/test/Makefile index 2dd1423005c..f1e18e49456 100644 --- a/test/Makefile +++ b/test/Makefile @@ -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) > $@