mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
e0243fb42d
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214965 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
373 B
LLVM
12 lines
373 B
LLVM
; RUN: llc -mtriple=aarch64-none-linux-gnu < %s -mcpu=cortex-a57 -aarch64-enable-early-ifcvt=false | FileCheck %s
|
|
|
|
; Check that the select is expanded into a branch sequence.
|
|
define i64 @f(i64 %a, i64 %b, i64* %c, i64 %d, i64 %e) {
|
|
; CHECK: cbz
|
|
%x0 = load i64* %c
|
|
%x1 = icmp eq i64 %x0, 0
|
|
%x2 = select i1 %x1, i64 %a, i64 %b
|
|
%x3 = add i64 %x2, %d
|
|
ret i64 %x3
|
|
}
|