mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-11 21:57:55 +00:00
13 lines
342 B
LLVM
13 lines
342 B
LLVM
|
; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
|
||
|
|
||
|
%rt2 = type { i32, { i8, %rt2, i8 }, i32 }
|
||
|
|
||
|
define i32 @main() nounwind {
|
||
|
entry:
|
||
|
; Check that recursive types trigger an error instead of segfaulting, when
|
||
|
; the recursion isn't through a pointer to the type.
|
||
|
; CHECK: Cannot allocate unsized type
|
||
|
%0 = alloca %rt2
|
||
|
ret i32 0
|
||
|
}
|