diff options
| author | Nick Lewycky <nicholas@mxc.ca> | 2008-07-12 07:41:32 +0000 |
|---|---|---|
| committer | Nick Lewycky <nicholas@mxc.ca> | 2008-07-12 07:41:32 +0000 |
| commit | b5688ccf575d2d4b6757a566ee81118a0ac520b9 (patch) | |
| tree | b407405306f324d48cb0dc532e42a10d2af644e0 /llvm/test/Analysis/ScalarEvolution/2007-08-06-Unsigned.ll | |
| parent | e424236c4e3f8b8b814ae1fb35fddc3861d9315e (diff) | |
| download | bcm5719-llvm-b5688ccf575d2d4b6757a566ee81118a0ac520b9.tar.gz bcm5719-llvm-b5688ccf575d2d4b6757a566ee81118a0ac520b9.zip | |
Stop creating extraneous smax/umax in SCEV. This removes a regression where we
started complicating many loops ('for' loops, in fact).
llvm-svn: 53508
Diffstat (limited to 'llvm/test/Analysis/ScalarEvolution/2007-08-06-Unsigned.ll')
| -rw-r--r-- | llvm/test/Analysis/ScalarEvolution/2007-08-06-Unsigned.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Analysis/ScalarEvolution/2007-08-06-Unsigned.ll b/llvm/test/Analysis/ScalarEvolution/2007-08-06-Unsigned.ll index 23ffc650b0d..e725852cea1 100644 --- a/llvm/test/Analysis/ScalarEvolution/2007-08-06-Unsigned.ll +++ b/llvm/test/Analysis/ScalarEvolution/2007-08-06-Unsigned.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -scalar-evolution -analyze | grep {Loop bb: ( -1 + ( -1 \\* %x) + (( 1 + %x) umax %y)) iterations!} +; RUN: llvm-as < %s | opt -scalar-evolution -analyze | grep {Loop bb: ( -1 + ( -1 \\* %x) + %y) iterations!} ; PR1597 define i32 @f(i32 %x, i32 %y) { |

