aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/kvx/i64_umod.c
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/kvx/i64_umod.c')
-rw-r--r--runtime/kvx/i64_umod.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/kvx/i64_umod.c b/runtime/kvx/i64_umod.c
new file mode 100644
index 00000000..59e35960
--- /dev/null
+++ b/runtime/kvx/i64_umod.c
@@ -0,0 +1,6 @@
+extern unsigned long __umoddi3 (unsigned long a, unsigned long b);
+
+unsigned i32_umod (unsigned a, unsigned b)
+{
+ return __umoddi3 (a, b);
+}