revert a hunk of r82018 that wasn't supposed to go in yet.
[llvm/avr.git] / test / Analysis / BasicAA / 2003-09-19-LocalArgument.ll
blob637d8f0db48625fef3a6ec85b9958a8500cc39d6
1 ; In this test, a local alloca cannot alias an incoming argument.
3 ; RUN: opt < %s -gvn -instcombine -S | not grep sub
5 define i32 @test(i32* %P) {
6         %X = alloca i32
7         %V1 = load i32* %P
8         store i32 0, i32* %X
9         %V2 = load i32* %P
10         %Diff = sub i32 %V1, %V2
11         ret i32 %Diff