[llvm-commits] CVS: llvm/test/Regression/Transforms/LoopStrengthReduce/exit_compare_live_range.ll
Reid Spencer
reid at x10sys.com
Fri Jan 12 21:07:32 PST 2007
Changes in directory llvm/test/Regression/Transforms/LoopStrengthReduce:
exit_compare_live_range.ll updated: 1.4 -> 1.5
---
Log message:
For PR1043: http://llvm.org/PR1043 :
Bye, Bye Booly. Remove the use of the bool type from non-upgraded test
cases and from grep expressions. The parser doesn't accept it and the
asm writer doesn't produce it any more.
---
Diffs of the changes: (+4 -3)
exit_compare_live_range.ll | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
Index: llvm/test/Regression/Transforms/LoopStrengthReduce/exit_compare_live_range.ll
diff -u llvm/test/Regression/Transforms/LoopStrengthReduce/exit_compare_live_range.ll:1.4 llvm/test/Regression/Transforms/LoopStrengthReduce/exit_compare_live_range.ll:1.5
--- llvm/test/Regression/Transforms/LoopStrengthReduce/exit_compare_live_range.ll:1.4 Sat Dec 23 00:05:41 2006
+++ llvm/test/Regression/Transforms/LoopStrengthReduce/exit_compare_live_range.ll Fri Jan 12 23:06:52 2007
@@ -1,8 +1,9 @@
; Make sure that the compare instruction occurs after the increment to avoid
-; having overlapping live ranges that result in copies. We want the setcc instruction
-; immediately before the conditional branch.
+; 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 icmp
+; RUN: llvm-upgrade < %s | llvm-as | opt -loop-reduce | llvm-dis | \
+; RUN: %prcontext 'br i1' 1 | grep icmp
void %foo(float* %D, uint %E) {
entry:
More information about the llvm-commits
mailing list