diff options
Diffstat (limited to 'llvm/test/CodeGen/ARM/ifcvt12.ll')
| -rw-r--r-- | llvm/test/CodeGen/ARM/ifcvt12.ll | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/ARM/ifcvt12.ll b/llvm/test/CodeGen/ARM/ifcvt12.ll new file mode 100644 index 00000000000..77bdca57e55 --- /dev/null +++ b/llvm/test/CodeGen/ARM/ifcvt12.ll @@ -0,0 +1,15 @@ +; RUN: llc < %s -mtriple=arm-apple-darwin -mcpu=cortex-a8 | FileCheck %s +define i32 @f1(i32 %a, i32 %b, i32 %c) { +; CHECK: f1: +; CHECK: mlsne r0, r0, r1, r2 + %tmp1 = icmp eq i32 %a, 0 + br i1 %tmp1, label %cond_false, label %cond_true + +cond_true: + %tmp2 = mul i32 %a, %b + %tmp3 = sub i32 %c, %tmp2 + ret i32 %tmp3 + +cond_false: + ret i32 %a +} |

