mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
6aa403748e
top level type without a specified number. This syntax isn't documented and blocks forward progress. llvm-svn: 133371
15 lines
315 B
LLVM
15 lines
315 B
LLVM
; RUN: llc < %s -march=x86 -O0
|
|
|
|
; This file is for regression tests for cases where FastISel needs
|
|
; to gracefully bail out and let SelectionDAGISel take over.
|
|
|
|
%0 = type { i64, i8* } ; type %0
|
|
|
|
declare void @bar(%0)
|
|
|
|
define fastcc void @foo() nounwind {
|
|
entry:
|
|
call void @bar(%0 zeroinitializer)
|
|
unreachable
|
|
}
|