[llvm-exegesis][NFC] Pass Instruction instead of bare Opcode
[llvm-core.git] / test / Analysis / CFLAliasAnalysis / Steensgaard / arguments.ll
blob85f3bc64e0dcfa192f7c838f0f073318f3bff923
1 ; This testcase ensures that CFL AA gives conservative answers on variables
2 ; that involve arguments.
4 ; RUN: opt < %s -cfl-steens-aa -aa-eval -print-may-aliases -disable-output 2>&1 | FileCheck %s
6 ; CHECK:     Function: test
8 define void @test(i1 %c, i32* %arg1, i32* %arg2) {
9   ; CHECK: 6 Total Alias Queries Performed
10   ; CHECK: 3 no alias responses
11   %a = alloca i32, align 4
12   %b = select i1 %c, i32* %arg1, i32* %arg2
14   ret void