aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-01-23 16:51:47 +0000
committerChris Lattner <sabre@nondot.org>2003-01-23 16:51:47 +0000
commit0798b7f45a2989f2adb4b8af858172a424602262 (patch)
treed9534cffc5bfe46f79f063104c2464eeda36947e
parent14e1e69121e15d10a0cfe1e9ff733aa3bb4fd101 (diff)
Dont' stop the build
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5412 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CBackend/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CBackend/Makefile b/test/CBackend/Makefile
index d3ce4435e8..06e1bdeb6b 100644
--- a/test/CBackend/Makefile
+++ b/test/CBackend/Makefile
@@ -15,9 +15,9 @@ all:: $(addprefix Output/, $(TESTS:%.ll=%.to))
Output/%.to: Output/%.c
- $(CC) -c $< -o $@ #|| \
+ $(CC) -c $< -o $@ || \
(rm -f $@; $(FAILURE) $@ )
Output/%.c: %.ll Output/.dir $(LAS) $(LDIS)
- $(LAS) < $< | $(LDIS) -c > $@ #|| \
+ $(LAS) < $< | $(LDIS) -c > $@ || \
(rm -f $@; $(FAILURE) $@ )