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