diff options
author | Chris Lattner <sabre@nondot.org> | 2001-11-06 08:34:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-11-06 08:34:56 +0000 |
commit | 54bc6b31660f7b8743399f2fa9e3ef4a2458bdde (patch) | |
tree | 361ed9123439399f06bc5b1d99139223cee34afa /test/Makefile.tests | |
parent | e34443db3c428c6b504d5689d85213ff3fb24bef (diff) | |
download | external_llvm-54bc6b31660f7b8743399f2fa9e3ef4a2458bdde.zip external_llvm-54bc6b31660f7b8743399f2fa9e3ef4a2458bdde.tar.gz external_llvm-54bc6b31660f7b8743399f2fa9e3ef4a2458bdde.tar.bz2 |
Reorder paramters to make the command line more easily modifiable
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1153 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile.tests')
-rw-r--r-- | test/Makefile.tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests index df3dc8c..eb0ea0e 100644 --- a/test/Makefile.tests +++ b/test/Makefile.tests @@ -67,7 +67,7 @@ clean : $(LLC) -f -trace $(LLCFLAGS) $< %.o: %.c - $(LCC) $(LCFLAGS) -c -o $@ $< + $(LCC) $(LCFLAGS) $< -c -o $@ %.bc: %.ll $(LAS) -f $< |