Mercurial > hg > Members > tobaru > cbc > CbC_llvm
view test/CodeGen/ARM/ifcvt12.ll @ 128:c347d3398279 default tip
fix
author | mir3636 |
---|---|
date | Wed, 06 Dec 2017 14:37:17 +0900 |
parents | 95c75e76d11b |
children |
line wrap: on
line source
; RUN: llc < %s -mtriple=arm-apple-darwin -mcpu=cortex-a8 | FileCheck %s define i32 @f1(i32 %a, i32 %b, i32 %c) { ; CHECK-LABEL: 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 }