diff options
Diffstat (limited to 'lib/compiler_rt/fmax.zig')
| -rw-r--r-- | lib/compiler_rt/fmax.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler_rt/fmax.zig b/lib/compiler_rt/fmax.zig index 27285c575b..a26d41a2b3 100644 --- a/lib/compiler_rt/fmax.zig +++ b/lib/compiler_rt/fmax.zig @@ -39,7 +39,7 @@ pub fn fmaxq(x: f128, y: f128) callconv(.C) f128 { } pub fn fmaxl(x: c_longdouble, y: c_longdouble) callconv(.C) c_longdouble { - switch (@typeInfo(c_longdouble).Float.bits) { + switch (@typeInfo(c_longdouble).float.bits) { 16 => return __fmaxh(x, y), 32 => return fmaxf(x, y), 64 => return fmax(x, y), |
