diff options
author | Chris Lattner <sabre@nondot.org> | 2002-05-03 18:31:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-05-03 18:31:30 +0000 |
commit | 2e055ed08c991594e965b28f196e1fa949fda297 (patch) | |
tree | 0935c6b780f9c97fa107d97358177e79c397a2ee | |
parent | 9b02cc365ccb53a9476989fbed80cfd29ca7c384 (diff) | |
download | external_llvm-2e055ed08c991594e965b28f196e1fa949fda297.zip external_llvm-2e055ed08c991594e965b28f196e1fa949fda297.tar.gz external_llvm-2e055ed08c991594e965b28f196e1fa949fda297.tar.bz2 |
Add -d switch to test AsmWriter as well
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2452 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Assembler/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Assembler/Makefile b/test/Assembler/Makefile index 674b2b3..2e571b2 100644 --- a/test/Assembler/Makefile +++ b/test/Assembler/Makefile @@ -12,5 +12,5 @@ all:: $(addprefix Output/, $(TESTS:%.ll=%.tbc)) Output/%.tbc: %.ll $(LAS) Output/.dir @echo "======== Assembling $<" - $(LAS) -f $< -o $@ || \ + $(LAS) -d -f $< -o $@ > /dev/null 2>&1 || \ ( rm -f $@; $(FAILURE) $@ ) |