aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/floatuntidf.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/floatuntidf.zig
parent05937b362a8206f7eca193a28617049371f11b26 (diff)
downloadzig-79460d4a3eef8eb927b02a7eda8bc9999a766672.tar.gz
zig-79460d4a3eef8eb927b02a7eda8bc9999a766672.zip
Remove uses of deprecated callconv aliases
Diffstat (limited to 'lib/compiler_rt/floatuntidf.zig')
-rw-r--r--lib/compiler_rt/floatuntidf.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compiler_rt/floatuntidf.zig b/lib/compiler_rt/floatuntidf.zig
index 52fdbfd930..cee154ed0b 100644
--- a/lib/compiler_rt/floatuntidf.zig
+++ b/lib/compiler_rt/floatuntidf.zig
@@ -12,10 +12,10 @@ comptime {
}
}
-pub fn __floatuntidf(a: u128) callconv(.C) f64 {
+pub fn __floatuntidf(a: u128) callconv(.c) f64 {
return floatFromInt(f64, a);
}
-fn __floatuntidf_windows_x86_64(a: @Vector(2, u64)) callconv(.C) f64 {
+fn __floatuntidf_windows_x86_64(a: @Vector(2, u64)) callconv(.c) f64 {
return floatFromInt(f64, @as(u128, @bitCast(a)));
}