Massive check in. This changes the "-fast" flag to "-O#" in llc. If you want to
[oota-llvm.git] / test / CodeGen / X86 / fast-isel-bail.ll
1 ; RUN: llvm-as < %s | llc -march=x86 -O0
2
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
8 declare void @bar(%0)
9
10 define fastcc void @foo() nounwind {
11 entry:
12         call void @bar(%0 zeroinitializer)
13         unreachable
14 }