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.
|
; RUN: llc -mtriple=arm64-eabi -mattr=+jsconv -o - %s | FileCheck %s
|
|
|
|
define i32 @test_jcvt(double %v) {
|
|
; CHECK-LABEL: test_jcvt:
|
|
; CHECK: fjcvtzs w0, d0
|
|
%val = call i32 @llvm.aarch64.fjcvtzs(double %v)
|
|
ret i32 %val
|
|
}
|
|
|
|
declare i32 @llvm.aarch64.fjcvtzs(double)
|