From: Vikram S. Adve Date: Thu, 18 Oct 2001 00:23:32 +0000 (+0000) Subject: Reverse previous change. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8f1afbf3b3a70f90d477d6805d66f4fb02541df1;p=oota-llvm.git Reverse previous change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@867 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Makefile b/test/Makefile index f1e18e49456..2dd1423005c 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) > $@