From 867c3cc380118f3f5a2ff96e2a96efd747133376 Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Thu, 18 Oct 2001 00:22:14 +0000 Subject: [PATCH] Generate assembly code for testcodegen. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@866 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) > $@ -- 2.34.1