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.
12 lines
310 B
12 lines
310 B
; RUN: llc < %s -march=arm64 | FileCheck %s
|
|
|
|
define float @fcvtxn(double %a) {
|
|
; CHECK-LABEL: fcvtxn:
|
|
; CHECK: fcvtxn s0, d0
|
|
; CHECK-NEXT: ret
|
|
%vcvtxd.i = tail call float @llvm.aarch64.sisd.fcvtxn(double %a) nounwind
|
|
ret float %vcvtxd.i
|
|
}
|
|
|
|
declare float @llvm.aarch64.sisd.fcvtxn(double) nounwind readnone
|