mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-05 02:07:56 +00:00
42c1d6c7b9
llvm-svn: 54832
16 lines
352 B
LLVM
16 lines
352 B
LLVM
; RUN: llvm-as < %s | opt -gvn -instcombine | llvm-dis | grep sub
|
|
|
|
; BasicAA was incorrectly concluding that P1 and P2 didn't conflict!
|
|
|
|
define i32 @test(i32 *%Ptr, i64 %V) {
|
|
%P2 = getelementptr i32* %Ptr, i64 1
|
|
%P1 = getelementptr i32* %Ptr, i64 %V
|
|
%X = load i32* %P1
|
|
store i32 5, i32* %P2
|
|
|
|
%Y = load i32* %P1
|
|
|
|
%Z = sub i32 %X, %Y
|
|
ret i32 %Z
|
|
}
|