[llvm-commits] CVS: llvm/test/Regression/Transforms/FunctionResolve/retmismatch1.ll retmismatch2.ll
Chris Lattner
lattner at cs.uiuc.edu
Wed Oct 9 15:38:00 PDT 2002
Changes in directory llvm/test/Regression/Transforms/FunctionResolve:
retmismatch1.ll updated: 1.1 -> 1.2
retmismatch2.ll updated: 1.1 -> 1.2
---
Log message:
Avoid having testcases spit out bytecode on error
---
Diffs of the changes:
Index: llvm/test/Regression/Transforms/FunctionResolve/retmismatch1.ll
diff -u llvm/test/Regression/Transforms/FunctionResolve/retmismatch1.ll:1.1 llvm/test/Regression/Transforms/FunctionResolve/retmismatch1.ll:1.2
--- llvm/test/Regression/Transforms/FunctionResolve/retmismatch1.ll:1.1 Fri May 24 16:27:41 2002
+++ llvm/test/Regression/Transforms/FunctionResolve/retmismatch1.ll Wed Oct 9 15:36:54 2002
@@ -1,6 +1,6 @@
; This shows where the function is called with the prototype indicating a
; return type exists, but it really doesn't.
-; RUN: if as < %s | opt -funcresolve
+; RUN: if as < %s | opt -funcresolve > /dev/null
; RUN: then echo "opt ok"
; RUN: else exit 1 # Make sure opt doesn't abort!
; RUN: fi
Index: llvm/test/Regression/Transforms/FunctionResolve/retmismatch2.ll
diff -u llvm/test/Regression/Transforms/FunctionResolve/retmismatch2.ll:1.1 llvm/test/Regression/Transforms/FunctionResolve/retmismatch2.ll:1.2
--- llvm/test/Regression/Transforms/FunctionResolve/retmismatch2.ll:1.1 Fri May 24 16:27:41 2002
+++ llvm/test/Regression/Transforms/FunctionResolve/retmismatch2.ll Wed Oct 9 15:36:54 2002
@@ -1,7 +1,7 @@
; This shows where the function is called with the prototype indicating a
; return type doesn't exists, but it really does.
;
-; RUN: if as < %s | opt -funcresolve
+; RUN: if as < %s | opt -funcresolve > /dev/null
; RUN: then echo "opt ok"
; RUN: else exit 1 # Make sure opt doesn't abort!
; RUN: fi
More information about the llvm-commits
mailing list