llvm-6502/test/CodeGen/X86/fast-isel-bail.ll
2009-09-08 23:54:48 +00:00

15 lines
310 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.
type { i64, i8* } ; type %0
declare void @bar(%0)
define fastcc void @foo() nounwind {
entry:
call void @bar(%0 zeroinitializer)
unreachable
}