[llvm-commits] CVS: llvm/test/Regression/Transforms/LoopStrengthReduce/exit_compare_live_range.ll
Reid Spencer
reid at x10sys.com
Fri Dec 22 22:07:00 PST 2006
Changes in directory llvm/test/Regression/Transforms/LoopStrengthReduce:
exit_compare_live_range.ll updated: 1.3 -> 1.4
---
Log message:
For PR950: http://llvm.org/PR950 :
This patch removes the SetCC instructions and replaces them with the ICmp
and FCmp instructions. The SetCondInst instruction has been removed and
been replaced with ICmpInst and FCmpInst.
---
Diffs of the changes: (+1 -1)
exit_compare_live_range.ll | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/test/Regression/Transforms/LoopStrengthReduce/exit_compare_live_range.ll
diff -u llvm/test/Regression/Transforms/LoopStrengthReduce/exit_compare_live_range.ll:1.3 llvm/test/Regression/Transforms/LoopStrengthReduce/exit_compare_live_range.ll:1.4
--- llvm/test/Regression/Transforms/LoopStrengthReduce/exit_compare_live_range.ll:1.3 Fri Dec 1 22:23:09 2006
+++ llvm/test/Regression/Transforms/LoopStrengthReduce/exit_compare_live_range.ll Sat Dec 23 00:05:41 2006
@@ -2,7 +2,7 @@
; having overlapping live ranges that result in copies. We want the setcc instruction
; immediately before the conditional branch.
;
-; RUN: llvm-upgrade < %s | llvm-as | opt -loop-reduce | llvm-dis | %prcontext 'br bool' 1 | grep set
+; RUN: llvm-upgrade < %s | llvm-as | opt -loop-reduce | llvm-dis | %prcontext 'br bool' 1 | grep icmp
void %foo(float* %D, uint %E) {
entry:
More information about the llvm-commits
mailing list