diff options
| author | Linus Groh <mail@linusgroh.de> | 2025-03-03 18:01:47 +0000 |
|---|---|---|
| committer | Linus Groh <mail@linusgroh.de> | 2025-03-05 03:01:43 +0000 |
| commit | 79460d4a3eef8eb927b02a7eda8bc9999a766672 (patch) | |
| tree | 8ce2cfb123bf590e8c522860ad04c13b6e6d9aa9 /lib/compiler_rt/multf3.zig | |
| parent | 05937b362a8206f7eca193a28617049371f11b26 (diff) | |
| download | zig-79460d4a3eef8eb927b02a7eda8bc9999a766672.tar.gz zig-79460d4a3eef8eb927b02a7eda8bc9999a766672.zip | |
Remove uses of deprecated callconv aliases
Diffstat (limited to 'lib/compiler_rt/multf3.zig')
| -rw-r--r-- | lib/compiler_rt/multf3.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compiler_rt/multf3.zig b/lib/compiler_rt/multf3.zig index 8ed84d0587..0da8c506e8 100644 --- a/lib/compiler_rt/multf3.zig +++ b/lib/compiler_rt/multf3.zig @@ -12,10 +12,10 @@ comptime { @export(&__multf3, .{ .name = "__multf3", .linkage = common.linkage, .visibility = common.visibility }); } -pub fn __multf3(a: f128, b: f128) callconv(.C) f128 { +pub fn __multf3(a: f128, b: f128) callconv(.c) f128 { return mulf3(f128, a, b); } -fn _Qp_mul(c: *f128, a: *const f128, b: *const f128) callconv(.C) void { +fn _Qp_mul(c: *f128, a: *const f128, b: *const f128) callconv(.c) void { c.* = mulf3(f128, a.*, b.*); } |
