summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/icmp.ll
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2012-02-25 23:01:19 +0000
committerNick Lewycky <nicholas@mxc.ca>2012-02-25 23:01:19 +0000
commit6fd3428afa46ace6712f0649bf4a7bd6799cc355 (patch)
tree0610507366cd0c856c8ba20cf26e1d6d5975c3b1 /test/Transforms/InstCombine/icmp.ll
parent28e215ba63164f201292f8c77bf038b4282aa052 (diff)
downloadllvm-6fd3428afa46ace6712f0649bf4a7bd6799cc355.tar.gz
llvm-6fd3428afa46ace6712f0649bf4a7bd6799cc355.tar.bz2
llvm-6fd3428afa46ace6712f0649bf4a7bd6799cc355.tar.xz
Roll these back to r151448 until I figure out how they're breaking
MultiSource/Applications/lua. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151463 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/icmp.ll')
-rw-r--r--test/Transforms/InstCombine/icmp.ll4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Transforms/InstCombine/icmp.ll b/test/Transforms/InstCombine/icmp.ll
index a9ae221d8f..dabb0f3adf 100644
--- a/test/Transforms/InstCombine/icmp.ll
+++ b/test/Transforms/InstCombine/icmp.ll
@@ -634,6 +634,8 @@ define i1 @test62(i8* %a) {
%arrayidx2 = getelementptr inbounds i8* %a, i64 10
%cmp = icmp slt i8* %arrayidx1, %arrayidx2
ret i1 %cmp
+; Don't turn a signed cmp of GEPs into an index compare.
; CHECK: @test62
-; CHECK-NEXT: ret i1 true
+; CHECK: %cmp = icmp slt i8* %arrayidx1, %arrayidx2
+; CHECK-NEXT: ret i1 %cmp
}