Dan Gohman | 36a0947 | 2009-09-08 23:54:48 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -march=x86 -O0 |
Dan Gohman | 4fd5528 | 2009-04-07 20:40:11 +0000 | [diff] [blame] | 2 | |
| 3 | ; This file is for regression tests for cases where FastISel needs |
| 4 | ; to gracefully bail out and let SelectionDAGISel take over. |
| 5 | |
Chris Lattner | a53616d | 2011-06-19 00:03:46 +0000 | [diff] [blame^] | 6 | %0 = type { i64, i8* } ; type %0 |
Dan Gohman | 4fd5528 | 2009-04-07 20:40:11 +0000 | [diff] [blame] | 7 | |
| 8 | declare void @bar(%0) |
| 9 | |
| 10 | define fastcc void @foo() nounwind { |
| 11 | entry: |
| 12 | call void @bar(%0 zeroinitializer) |
| 13 | unreachable |
| 14 | } |