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

13 lines
298 B
LLVM
Raw Normal View History

; In this test, a local alloca cannot alias an incoming argument.
2008-02-14 07:56:27 +01:00
; RUN: llvm-as < %s | opt -load-vn -gcse -instcombine | llvm-dis | 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
}