mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
8 lines
176 B
LLVM
8 lines
176 B
LLVM
|
; RUN: not opt -S -verify < %s 2>&1 | FileCheck %s
|
||
|
|
||
|
define void @alloca() {
|
||
|
; CHECK: error: Cannot allocate unsized type
|
||
|
%a = alloca { i32, <vscale x 1 x i32> }
|
||
|
ret void
|
||
|
}
|