blob: a485827be96d50d38955a73e4724368331985885 [file] [log] [blame]
Dan Gohman36a09472009-09-08 23:54:48 +00001; RUN: llc < %s -march=x86 -O0
Dan Gohman4fd55282009-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
Chris Lattnera53616d2011-06-19 00:03:46 +00006 %0 = type { i64, i8* } ; type %0
Dan Gohman4fd55282009-04-07 20:40:11 +00007
8declare void @bar(%0)
9
10define fastcc void @foo() nounwind {
11entry:
12 call void @bar(%0 zeroinitializer)
13 unreachable
14}