You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
431 B
13 lines
431 B
; RUN: llc -mtriple=aarch64-none-linux-gnu < %s -mcpu=cortex-a57 -aarch64-enable-early-ifcvt=false | FileCheck %s
|
|
|
|
; Check that the select isn't expanded into a branch sequence
|
|
; when the icmp's first operand %x0 is from load.
|
|
define i64 @f(i64 %a, i64 %b, i64* %c, i64 %d, i64 %e) {
|
|
; CHECK: csel
|
|
%x0 = load i64, i64* %c
|
|
%x1 = icmp eq i64 %x0, 0
|
|
%x2 = select i1 %x1, i64 %a, i64 %b
|
|
%x3 = add i64 %x2, %d
|
|
ret i64 %x3
|
|
}
|