[llvm-commits] CVS: llvm/test/Regression/Transforms/FunctionResolve/2002-11-09-ExternFn.ll basictest.ll retmismatch1.ll retmismatch2.ll
Chris Lattner
lattner at cs.uiuc.edu
Thu Jun 19 12:03:01 PDT 2003
Changes in directory llvm/test/Regression/Transforms/FunctionResolve:
2002-11-09-ExternFn.ll updated: 1.1 -> 1.2
basictest.ll updated: 1.1 -> 1.2
retmismatch1.ll updated: 1.2 -> 1.3
retmismatch2.ll updated: 1.2 -> 1.3
---
Log message:
The actual nicification of calls is now implemented in instcombine, not in
funcresolve
---
Diffs of the changes:
Index: llvm/test/Regression/Transforms/FunctionResolve/2002-11-09-ExternFn.ll
diff -u llvm/test/Regression/Transforms/FunctionResolve/2002-11-09-ExternFn.ll:1.1 llvm/test/Regression/Transforms/FunctionResolve/2002-11-09-ExternFn.ll:1.2
--- llvm/test/Regression/Transforms/FunctionResolve/2002-11-09-ExternFn.ll:1.1 Sat Nov 9 21:35:43 2002
+++ llvm/test/Regression/Transforms/FunctionResolve/2002-11-09-ExternFn.ll Thu Jun 19 12:02:06 2003
@@ -3,7 +3,7 @@
; RUN: else exit 1 # Make sure opt doesn't abort!
; RUN: fi
;
-; RUN: if as < %s | opt -funcresolve | dis | grep '\.\.\.'
+; RUN: if as < %s | opt -funcresolve -instcombine | dis | grep '\.\.\.'
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
Index: llvm/test/Regression/Transforms/FunctionResolve/basictest.ll
diff -u llvm/test/Regression/Transforms/FunctionResolve/basictest.ll:1.1 llvm/test/Regression/Transforms/FunctionResolve/basictest.ll:1.2
--- llvm/test/Regression/Transforms/FunctionResolve/basictest.ll:1.1 Fri May 24 16:27:40 2002
+++ llvm/test/Regression/Transforms/FunctionResolve/basictest.ll Thu Jun 19 12:02:06 2003
@@ -1,4 +1,4 @@
-; RUN: if as < %s | opt -funcresolve | dis | grep '\.\.\.' | grep call
+; RUN: if as < %s | opt -funcresolve -instcombine | dis | grep '\.\.\.' | grep call
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
Index: llvm/test/Regression/Transforms/FunctionResolve/retmismatch1.ll
diff -u llvm/test/Regression/Transforms/FunctionResolve/retmismatch1.ll:1.2 llvm/test/Regression/Transforms/FunctionResolve/retmismatch1.ll:1.3
--- llvm/test/Regression/Transforms/FunctionResolve/retmismatch1.ll:1.2 Wed Oct 9 15:36:54 2002
+++ llvm/test/Regression/Transforms/FunctionResolve/retmismatch1.ll Thu Jun 19 12:02:06 2003
@@ -5,7 +5,7 @@
; RUN: else exit 1 # Make sure opt doesn't abort!
; RUN: fi
;
-; RUN: if as < %s | opt -funcresolve | dis | grep '\.\.\.' | grep call
+; RUN: if as < %s | opt -funcresolve -instcombine | dis | grep '\.\.\.' | grep call
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
Index: llvm/test/Regression/Transforms/FunctionResolve/retmismatch2.ll
diff -u llvm/test/Regression/Transforms/FunctionResolve/retmismatch2.ll:1.2 llvm/test/Regression/Transforms/FunctionResolve/retmismatch2.ll:1.3
--- llvm/test/Regression/Transforms/FunctionResolve/retmismatch2.ll:1.2 Wed Oct 9 15:36:54 2002
+++ llvm/test/Regression/Transforms/FunctionResolve/retmismatch2.ll Thu Jun 19 12:02:06 2003
@@ -6,7 +6,7 @@
; RUN: else exit 1 # Make sure opt doesn't abort!
; RUN: fi
;
-; RUN: if as < %s | opt -funcresolve | dis | grep '\.\.\.' | grep call
+; RUN: if as < %s | opt -funcresolve -instcombine | dis | grep '\.\.\.' | grep call
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
More information about the llvm-commits
mailing list