mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
205b641954
input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. llvm-svn: 81537
16 lines
334 B
LLVM
16 lines
334 B
LLVM
; RUN: opt < %s -gvn -instcombine -S | 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
|
|
}
|