blob: fb4f37ef90be92b92e28de03fd45b54c7f920c90 [file] [log] [blame]
Bill Wendling58ed5d22009-04-29 00:15:41 +00001; RUN: llvm-as < %s | llc -march=x86 -O0
Dan Gohman09532df2009-04-07 20:40:11 +00002
3; This file is for regression tests for cases where FastISel needs
4; to gracefully bail out and let SelectionDAGISel take over.
5
6 type { i64, i8* } ; type %0
7
8declare void @bar(%0)
9
10define fastcc void @foo() nounwind {
11entry:
12 call void @bar(%0 zeroinitializer)
13 unreachable
14}