diff options
| author | LemonBoy <thatlemon@gmail.com> | 2020-01-04 11:55:19 +0100 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-01-06 19:08:15 -0500 |
| commit | e3a63b4e5abd501d58a2fc574b827f3250c14461 (patch) | |
| tree | 114c2e109f4ca83e2867af9bcab375430a8d433d /lib/std/special/compiler_rt.zig | |
| parent | d3d77138ecd692a045c478d804d188b3d88c14d5 (diff) | |
| download | zig-e3a63b4e5abd501d58a2fc574b827f3250c14461.tar.gz zig-e3a63b4e5abd501d58a2fc574b827f3250c14461.zip | |
Add more compiler-rt functions for ARM platform
Diffstat (limited to 'lib/std/special/compiler_rt.zig')
| -rw-r--r-- | lib/std/special/compiler_rt.zig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/std/special/compiler_rt.zig b/lib/std/special/compiler_rt.zig index 3a6e9c97e2..7a55300583 100644 --- a/lib/std/special/compiler_rt.zig +++ b/lib/std/special/compiler_rt.zig @@ -75,6 +75,9 @@ comptime { @export("__floatsisf", @import("compiler_rt/floatsiXf.zig").__floatsisf, linkage); @export("__floatdidf", @import("compiler_rt/floatdidf.zig").__floatdidf, linkage); @export("__floatsitf", @import("compiler_rt/floatsiXf.zig").__floatsitf, linkage); + + @export("__floatunsisf", @import("compiler_rt/floatunsisf.zig").__floatunsisf, linkage); + @export("__floatundisf", @import("compiler_rt/floatundisf.zig").__floatundisf, linkage); @export("__floatunsidf", @import("compiler_rt/floatunsidf.zig").__floatunsidf, linkage); @export("__floatundidf", @import("compiler_rt/floatundidf.zig").__floatundidf, linkage); @@ -183,6 +186,8 @@ comptime { @export("__aeabi_l2d", @import("compiler_rt/floatdidf.zig").__floatdidf, linkage); @export("__aeabi_ui2d", @import("compiler_rt/floatunsidf.zig").__floatunsidf, linkage); @export("__aeabi_ul2d", @import("compiler_rt/floatundidf.zig").__floatundidf, linkage); + @export("__aeabi_ui2f", @import("compiler_rt/floatunsisf.zig").__floatunsisf, linkage); + @export("__aeabi_ul2f", @import("compiler_rt/floatundisf.zig").__floatundisf, linkage); @export("__aeabi_fneg", @import("compiler_rt/negXf2.zig").__negsf2, linkage); @export("__aeabi_dneg", @import("compiler_rt/negXf2.zig").__negdf2, linkage); |
