aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/floatuneitf.zig
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compiler_rt/floatuneitf.zig')
-rw-r--r--lib/compiler_rt/floatuneitf.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler_rt/floatuneitf.zig b/lib/compiler_rt/floatuneitf.zig
index 727d301f7b..323f44611d 100644
--- a/lib/compiler_rt/floatuneitf.zig
+++ b/lib/compiler_rt/floatuneitf.zig
@@ -10,6 +10,6 @@ comptime {
}
pub fn __floatuneitf(a: [*]const u8, bits: usize) callconv(.c) f128 {
- const byte_size = std.zig.target.intByteSize(builtin.target, @intCast(bits));
+ const byte_size = std.zig.target.intByteSize(&builtin.target, @intCast(bits));
return floatFromBigInt(f128, .unsigned, @ptrCast(@alignCast(a[0..byte_size])));
}