| Evan Cheng | 83bdb38 | 2008-11-27 00:49:46 +0000 | [diff] [blame] | 1 | ; RUN: llvm-as < %s | llc -march=x86 | grep inc |
| 2 | ; RUN: llvm-as < %s | llc -march=x86 | grep add | grep 4 | ||||
| 3 | |||||
| 4 | define i32 @test(i32 %X) nounwind { | ||||
| 5 | entry: | ||||
| 6 | %0 = add i32 %X, 1 | ||||
| 7 | ret i32 %0 | ||||
| 8 | } | ||||
| 9 | |||||
| 10 | define i32 @test2(i32 %X) nounwind { | ||||
| 11 | entry: | ||||
| 12 | %0 = add i32 %X, 4 | ||||
| 13 | ret i32 %0 | ||||
| 14 | } | ||||