brintos

brintos / llvm-project-archived public Read only

0
0
Text · 704 B · c96f03e Raw
20 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 22; RUN: llc -mtriple=aarch64-none-linux-gnu < %s -mcpu=cortex-a57 -aarch64-enable-early-ifcvt=false | FileCheck %s3 4; Check that the select isn't expanded into a branch sequence5; when the icmp's first operand %x0 is from load.6define i64 @f(i64 %a, i64 %b, ptr %c, i64 %d, i64 %e) {7; CHECK-LABEL: f:8; CHECK:       // %bb.0:9; CHECK-NEXT:    ldr x8, [x2]10; CHECK-NEXT:    cmp x8, #011; CHECK-NEXT:    csel x8, x0, x1, eq12; CHECK-NEXT:    add x0, x8, x313; CHECK-NEXT:    ret14  %x0 = load i64, ptr %c15  %x1 = icmp eq i64 %x0, 016  %x2 = select i1 %x1, i64 %a, i64 %b17  %x3 = add i64 %x2, %d18  ret i64 %x319}20