summaryrefslogtreecommitdiff
path: root/src/math/aarch64/llroundf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/aarch64/llroundf.c')
-rw-r--r--src/math/aarch64/llroundf.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/aarch64/llroundf.c b/src/math/aarch64/llroundf.c
new file mode 100644
index 00000000..16699598
--- /dev/null
+++ b/src/math/aarch64/llroundf.c
@@ -0,0 +1,8 @@
+#include <math.h>
+
+long long llroundf(float x)
+{
+ long long n;
+ __asm__ ("fcvtas %x0, %s1" : "=r"(n) : "w"(x));
+ return n;
+}