aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/floatundihf.zig
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2025-03-03 18:01:47 +0000
committerLinus Groh <mail@linusgroh.de>2025-03-05 03:01:43 +0000
commit79460d4a3eef8eb927b02a7eda8bc9999a766672 (patch)
tree8ce2cfb123bf590e8c522860ad04c13b6e6d9aa9 /lib/compiler_rt/floatundihf.zig
parent05937b362a8206f7eca193a28617049371f11b26 (diff)
downloadzig-79460d4a3eef8eb927b02a7eda8bc9999a766672.tar.gz
zig-79460d4a3eef8eb927b02a7eda8bc9999a766672.zip
Remove uses of deprecated callconv aliases
Diffstat (limited to 'lib/compiler_rt/floatundihf.zig')
-rw-r--r--lib/compiler_rt/floatundihf.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler_rt/floatundihf.zig b/lib/compiler_rt/floatundihf.zig
index d05eb0a25e..5fefedec1d 100644
--- a/lib/compiler_rt/floatundihf.zig
+++ b/lib/compiler_rt/floatundihf.zig
@@ -7,6 +7,6 @@ comptime {
@export(&__floatundihf, .{ .name = "__floatundihf", .linkage = common.linkage, .visibility = common.visibility });
}
-fn __floatundihf(a: u64) callconv(.C) f16 {
+fn __floatundihf(a: u64) callconv(.c) f16 {
return floatFromInt(f16, a);
}