blob: f5496f777765e52151ab187e2aca7abce888e67d [file] [log] [blame]
James Molloy99917942014-08-06 13:31:32 +00001; RUN: llc -mtriple=aarch64-none-linux-gnu < %s -mcpu=cortex-a57 -aarch64-enable-early-ifcvt=false | FileCheck %s
2
3; Check that the select is expanded into a branch sequence.
4define i64 @f(i64 %a, i64 %b, i64* %c, i64 %d, i64 %e) {
5 ; CHECK: cbz
David Blaikiea79ac142015-02-27 21:17:42 +00006 %x0 = load i64, i64* %c
James Molloy99917942014-08-06 13:31:32 +00007 %x1 = icmp eq i64 %x0, 0
8 %x2 = select i1 %x1, i64 %a, i64 %b
9 %x3 = add i64 %x2, %d
10 ret i64 %x3
11}