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/floatdihf.zig | |
| parent | 05937b362a8206f7eca193a28617049371f11b26 (diff) | |
| download | zig-79460d4a3eef8eb927b02a7eda8bc9999a766672.tar.gz zig-79460d4a3eef8eb927b02a7eda8bc9999a766672.zip | |
Remove uses of deprecated callconv aliases
Diffstat (limited to 'lib/compiler_rt/floatdihf.zig')
| -rw-r--r-- | lib/compiler_rt/floatdihf.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler_rt/floatdihf.zig b/lib/compiler_rt/floatdihf.zig index eb568c9ff2..37a03e4ed3 100644 --- a/lib/compiler_rt/floatdihf.zig +++ b/lib/compiler_rt/floatdihf.zig @@ -7,6 +7,6 @@ comptime { @export(&__floatdihf, .{ .name = "__floatdihf", .linkage = common.linkage, .visibility = common.visibility }); } -fn __floatdihf(a: i64) callconv(.C) f16 { +fn __floatdihf(a: i64) callconv(.c) f16 { return floatFromInt(f16, a); } |
