llvm-project/llvm/test/Transforms/Inline/inline-scalable.ll
2022-12-08 03:09:27 +03:00

12 lines
289 B
LLVM

; RUN: opt -S -passes=inline < %s | FileCheck %s
define void @func() {
; CHECK-LABEL: func
; CHECK-NEXT: [[VEC_ADDR:%.*]] = alloca <vscale x 4 x i32>
; CHECK-NEXT: call void @func()
; CHECK-NEXT: ret void
%vec.addr = alloca <vscale x 4 x i32>
call void @func();
ret void
}