Files
llvm-6502/test/Transforms/InstCombine/GEPIdxCanon.ll
Owen Anderson 7c856c09cd Remove GCSE and LoadVN from the testsuite.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54832 91177308-0d34-0410-b5e6-96231b3b80d8
2008-08-16 00:00:54 +00:00

11 lines
369 B
LLVM

; RUN: llvm-as < %s | opt -instcombine -gvn -instcombine | \
; RUN: llvm-dis | not grep getelementptr
define i1 @test(i32* %A) {
%B = getelementptr i32* %A, i32 1 ; <i32*> [#uses=1]
%C = getelementptr i32* %A, i64 1 ; <i32*> [#uses=1]
%V = icmp eq i32* %B, %C ; <i1> [#uses=1]
ret i1 %V
}