We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
round_ties_even
f32
f64
1 parent 34336b8 commit 36cd4faCopy full SHA for 36cd4fa
src/intrinsics/mod.rs
@@ -297,6 +297,8 @@ fn codegen_float_intrinsic_call<'tcx>(
297
sym::truncf64 => ("trunc", 1, fx.tcx.types.f64),
298
sym::roundf32 => ("roundf", 1, fx.tcx.types.f32),
299
sym::roundf64 => ("round", 1, fx.tcx.types.f64),
300
+ sym::roundevenf32 => ("roundevenf", 1, fx.tcx.types.f32),
301
+ sym::roundevenf64 => ("roundeven", 1, fx.tcx.types.f64),
302
sym::sinf32 => ("sinf", 1, fx.tcx.types.f32),
303
sym::sinf64 => ("sin", 1, fx.tcx.types.f64),
304
sym::cosf32 => ("cosf", 1, fx.tcx.types.f32),
0 commit comments