diff options
author | Dan Gohman <gohman@apple.com> | 2009-04-30 16:40:30 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-04-30 16:40:30 +0000 |
commit | 4acd12a0cbe6d1e478e13feefbc67c654e552e68 (patch) | |
tree | bf2229edf41e522063501000846afd828137f43e /test | |
parent | 1d621f71c84c4f4d0574c0fa17fc5a8f6c49b46f (diff) | |
download | external_llvm-4acd12a0cbe6d1e478e13feefbc67c654e552e68.zip external_llvm-4acd12a0cbe6d1e478e13feefbc67c654e552e68.tar.gz external_llvm-4acd12a0cbe6d1e478e13feefbc67c654e552e68.tar.bz2 |
Don't try to mix integers and pointers in an icmp instruction
in getSCEVAtScope.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70495 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Transforms/LoopStrengthReduce/pr3086.ll | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Transforms/LoopStrengthReduce/pr3086.ll b/test/Transforms/LoopStrengthReduce/pr3086.ll index 4ca333f..f92bfe2 100644 --- a/test/Transforms/LoopStrengthReduce/pr3086.ll +++ b/test/Transforms/LoopStrengthReduce/pr3086.ll @@ -1,4 +1,5 @@ ; RUN: llvm-as < %s | opt -loop-reduce -disable-output +; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output ; PR 3086 %struct.Cls = type { i32, i8, [2 x %struct.Cls*], [2 x %struct.Lit*] } |