2016-06-21 07:10:56 +08:00
|
|
|
; This testcase ensures that CFL AA answers queries soundly when callee tries
|
|
|
|
; to return one of its parameters
|
|
|
|
|
2020-06-27 11:55:44 +08:00
|
|
|
; RUN: opt < %s -disable-basic-aa -cfl-steens-aa -aa-eval -print-all-alias-modref-info -disable-output 2>&1 | FileCheck %s
|
2016-07-06 08:26:41 +08:00
|
|
|
; RUN: opt < %s -aa-pipeline=cfl-steens-aa -passes=aa-eval -print-all-alias-modref-info -disable-output 2>&1 | FileCheck %s
|
2016-06-21 07:10:56 +08:00
|
|
|
|
|
|
|
define i32* @return_arg_callee(i32* %arg1, i32* %arg2) {
|
|
|
|
ret i32* %arg1
|
|
|
|
}
|
|
|
|
; CHECK-LABEL: Function: test_return_arg
|
|
|
|
; CHECK: NoAlias: i32* %a, i32* %b
|
|
|
|
; CHECK: MayAlias: i32* %a, i32* %c
|
|
|
|
; CHECK: NoAlias: i32* %b, i32* %c
|
2016-06-30 10:11:26 +08:00
|
|
|
|
2016-08-02 02:47:28 +08:00
|
|
|
; Temporarily disable modref checks
|
|
|
|
; NoModRef: Ptr: i32* %b <-> %c = call i32* @return_arg_callee(i32* %a, i32* %b)
|
2016-06-21 07:10:56 +08:00
|
|
|
define void @test_return_arg() {
|
|
|
|
%a = alloca i32, align 4
|
|
|
|
%b = alloca i32, align 4
|
|
|
|
|
|
|
|
%c = call i32* @return_arg_callee(i32* %a, i32* %b)
|
|
|
|
|
|
|
|
ret void
|
2016-06-24 02:55:23 +08:00
|
|
|
}
|