llvm-6502/test/CodeGen/X86/fast-isel-bail.ll
Dan Gohman 4fd552880c Don't attempt to handle aggregate argument values in FastISel; let
SelectionDAG do those. This fixes PR3955.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68546 91177308-0d34-0410-b5e6-96231b3b80d8
2009-04-07 20:40:11 +00:00

15 lines
322 B
LLVM

; RUN: llvm-as < %s | llc -march=x86 -fast
; 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
}