brintos

brintos / llvm-project-archived public Read only

0
0
Text · 363 B · b61f4e1 Raw
16 lines · plain
1; RUN: llc < %s -mtriple=arm-apple-darwin -mcpu=cortex-a8 | FileCheck %s2define i32 @f1(i32 %a, i32 %b, i32 %c) {3; CHECK-LABEL: f1:4; CHECK: mlsne r0, r0, r1, r25    %tmp1 = icmp eq i32 %a, 06    br i1 %tmp1, label %cond_false, label %cond_true7 8cond_true:9    %tmp2 = mul i32 %a, %b10    %tmp3 = sub i32 %c, %tmp211    ret i32 %tmp312 13cond_false:14    ret i32 %a15}16