mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
ed95f77522
Discovered as part of the VLS type work (see D85128). Reviewed By: efriedma Differential Revision: https://reviews.llvm.org/D85848
12 lines
282 B
LLVM
12 lines
282 B
LLVM
; 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
|
|
}
|