diff options
| author | Veikka Tuominen <git@vexu.eu> | 2022-01-21 21:49:02 +0200 |
|---|---|---|
| committer | Veikka Tuominen <git@vexu.eu> | 2022-02-04 22:38:13 +0200 |
| commit | 6a736f0c8c187f2fcaeed4b60bf9e54aa719ae02 (patch) | |
| tree | 7a27df553bceef9408ca473eb6bfda20ed8d0d2c /lib/std/special/compiler_rt.zig | |
| parent | 9bbd3ab257137c97f695d187436e14c622f877c8 (diff) | |
| download | zig-6a736f0c8c187f2fcaeed4b60bf9e54aa719ae02.tar.gz zig-6a736f0c8c187f2fcaeed4b60bf9e54aa719ae02.zip | |
compiler-rt: add add/sub for f80
Diffstat (limited to 'lib/std/special/compiler_rt.zig')
| -rw-r--r-- | lib/std/special/compiler_rt.zig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/std/special/compiler_rt.zig b/lib/std/special/compiler_rt.zig index d83e94be8f..da21745cce 100644 --- a/lib/std/special/compiler_rt.zig +++ b/lib/std/special/compiler_rt.zig @@ -237,12 +237,16 @@ comptime { @export(__adddf3, .{ .name = "__adddf3", .linkage = linkage }); const __addtf3 = @import("compiler_rt/addXf3.zig").__addtf3; @export(__addtf3, .{ .name = "__addtf3", .linkage = linkage }); + const __addxf3 = @import("compiler_rt/addXf3.zig").__addxf3; + @export(__addxf3, .{ .name = "__addxf3", .linkage = linkage }); const __subsf3 = @import("compiler_rt/addXf3.zig").__subsf3; @export(__subsf3, .{ .name = "__subsf3", .linkage = linkage }); const __subdf3 = @import("compiler_rt/addXf3.zig").__subdf3; @export(__subdf3, .{ .name = "__subdf3", .linkage = linkage }); const __subtf3 = @import("compiler_rt/addXf3.zig").__subtf3; @export(__subtf3, .{ .name = "__subtf3", .linkage = linkage }); + const __subxf3 = @import("compiler_rt/addXf3.zig").__subxf3; + @export(__subxf3, .{ .name = "__subxf3", .linkage = linkage }); const __mulsf3 = @import("compiler_rt/mulXf3.zig").__mulsf3; @export(__mulsf3, .{ .name = "__mulsf3", .linkage = linkage }); |
