brintos

brintos / llvm-project-archived public Read only

0
0
Text · 439 B · e130328 Raw
15 lines · plain
1; RUN: llc < %s --stop-after=finalize-isel -o - | FileCheck %s2target triple = "aarch64-linux"3 4; Check dynamic stack allocation and probing instructions do not have5; the FrameSetup flag.6 7; CHECK-NOT: frame-setup8define void @no_frame_setup(i64 %size, ptr %out) #0 {9  %v = alloca i8, i64 %size, align 110  store ptr %v, ptr %out, align 811  ret void12}13 14attributes #0 = { uwtable(async) "probe-stack"="inline-asm" "frame-pointer"="none" }15