diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-01-25 13:17:25 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-25 13:17:25 -0800 |
| commit | 8fa47bb904c888dadf20af5eb72b9643eed2bfea (patch) | |
| tree | 47fcc20146a7358b4216668d91c78d3bb712511d /lib/compiler_rt/floatdidf.zig | |
| parent | 015a5e198246f782415586235e0da7085867eb22 (diff) | |
| parent | b60e39fe8f50783509e3cfe7a3888e1611b063c1 (diff) | |
| download | zig-8fa47bb904c888dadf20af5eb72b9643eed2bfea.tar.gz zig-8fa47bb904c888dadf20af5eb72b9643eed2bfea.zip | |
Merge pull request #22230 from alexrp/lto-stuff
Disable LTO by default + some LTO fixes
Diffstat (limited to 'lib/compiler_rt/floatdidf.zig')
| -rw-r--r-- | lib/compiler_rt/floatdidf.zig | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/compiler_rt/floatdidf.zig b/lib/compiler_rt/floatdidf.zig index fc145e836d..2396624dc3 100644 --- a/lib/compiler_rt/floatdidf.zig +++ b/lib/compiler_rt/floatdidf.zig @@ -8,11 +8,7 @@ comptime { if (common.want_aeabi) { @export(&__aeabi_l2d, .{ .name = "__aeabi_l2d", .linkage = common.linkage, .visibility = common.visibility }); } else { - @export(&__floatdidf, .{ .name = "__floatdidf", .linkage = common.linkage, .visibility = common.visibility }); - - if (common.want_mingw_arm_abi) { - @export(&__floatdidf, .{ .name = "__i64tod", .linkage = common.linkage, .visibility = common.visibility }); - } + @export(&__floatdidf, .{ .name = if (common.want_windows_arm_abi) "__i64tod" else "__floatdidf", .linkage = common.linkage, .visibility = common.visibility }); } } |
