1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/Analysis/BasicAA/2003-09-19-LocalArgument.ll

13 lines
270 B
LLVM
Raw Normal View History

; In this test, a local alloca cannot alias an incoming argument.
; RUN: opt < %s -gvn -instcombine -S | not grep sub
2008-02-14 07:56:27 +01:00
define i32 @test(i32* %P) {
%X = alloca i32
%V1 = load i32* %P
store i32 0, i32* %X
%V2 = load i32* %P
%Diff = sub i32 %V1, %V2
ret i32 %Diff
}