You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
282 B

; RUN: opt -S -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
}