[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Analysis / BasicAA / 2003-09-19-LocalArgument.ll
blob8d730d4fb50eea00f0f4c3cd416a87244e3a012a
1 ; In this test, a local alloca cannot alias an incoming argument.
3 ; RUN: opt < %s -basic-aa -gvn -instcombine -S | FileCheck %s
5 ; CHECK:      define i32 @test
6 ; CHECK-NEXT: ret i32 0
8 define i32 @test(i32* %P) {
9         %X = alloca i32
10         %V1 = load i32, i32* %P
11         store i32 0, i32* %X
12         %V2 = load i32, i32* %P
13         %Diff = sub i32 %V1, %V2
14         ret i32 %Diff