| Dan Gohman | 4050339 | 2009-09-08 23:54:48 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -fast-isel -march=x86 | grep and |
| Evan Cheng | d172048 | 2008-09-08 17:15:42 +0000 | [diff] [blame] | 2 | |
| 3 | define i32 @t() nounwind { | ||||
| 4 | tak: | ||||
| 5 | %tmp = call i1 @foo() | ||||
| 6 | br i1 %tmp, label %BB1, label %BB2 | ||||
| 7 | BB1: | ||||
| 8 | ret i32 1 | ||||
| 9 | BB2: | ||||
| 10 | ret i32 0 | ||||
| 11 | } | ||||
| 12 | |||||
| 13 | declare i1 @foo() zeroext nounwind | ||||