bolt/deps/llvm-18.1.8/llvm/test/Analysis/BasicAA/tail-byval.ll
2025-02-14 19:21:04 +01:00

15 lines
520 B
LLVM

; RUN: opt -aa-pipeline=basic-aa -passes=aa-eval -print-all-alias-modref-info -disable-output < %s 2>&1 | FileCheck %s
declare void @takebyval(ptr byval(i32) %p)
define i32 @tailbyval() {
entry:
%p = alloca i32
store i32 42, ptr %p
tail call void @takebyval(ptr byval(i32) %p)
%rv = load i32, ptr %p
ret i32 %rv
}
; FIXME: This should be Just Ref.
; CHECK-LABEL: Function: tailbyval: 1 pointers, 1 call sites
; CHECK-NEXT: Both ModRef: Ptr: i32* %p <-> tail call void @takebyval(ptr byval(i32) %p)