mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
64e101b2d9
llvm-svn: 47792
9 lines
142 B
LLVM
9 lines
142 B
LLVM
; RUN: not llvm-as -f %s -o /dev/null |& grep {Cannot allocate unsized type}
|
|
; PR2113
|
|
|
|
define void @test() {
|
|
%A = alloca void()
|
|
ret void
|
|
}
|
|
|