@@ -420,10 +420,10 @@ impl<'tcx> GotocCtx<'tcx> {
420420 self . codegen_expr_to_place_stable ( place, e)
421421 }
422422 "exact_div" => self . codegen_exact_div ( fargs, place, loc) ,
423- "exp2f32" => unstable_codegen ! ( codegen_simple_intrinsic!( Exp2f ) ) ,
424- "exp2f64" => unstable_codegen ! ( codegen_simple_intrinsic!( Exp2 ) ) ,
425- "expf32" => unstable_codegen ! ( codegen_simple_intrinsic!( Expf ) ) ,
426- "expf64" => unstable_codegen ! ( codegen_simple_intrinsic!( Exp ) ) ,
423+ "exp2f32" => codegen_simple_intrinsic ! ( Exp2f ) ,
424+ "exp2f64" => codegen_simple_intrinsic ! ( Exp2 ) ,
425+ "expf32" => codegen_simple_intrinsic ! ( Expf ) ,
426+ "expf64" => codegen_simple_intrinsic ! ( Exp ) ,
427427 "fabsf32" => codegen_simple_intrinsic ! ( Fabsf ) ,
428428 "fabsf64" => codegen_simple_intrinsic ! ( Fabs ) ,
429429 "fadd_fast" => {
@@ -456,8 +456,8 @@ impl<'tcx> GotocCtx<'tcx> {
456456 "log10f64" => unstable_codegen ! ( codegen_simple_intrinsic!( Log10 ) ) ,
457457 "log2f32" => unstable_codegen ! ( codegen_simple_intrinsic!( Log2f ) ) ,
458458 "log2f64" => unstable_codegen ! ( codegen_simple_intrinsic!( Log2 ) ) ,
459- "logf32" => unstable_codegen ! ( codegen_simple_intrinsic!( Logf ) ) ,
460- "logf64" => unstable_codegen ! ( codegen_simple_intrinsic!( Log ) ) ,
459+ "logf32" => codegen_simple_intrinsic ! ( Logf ) ,
460+ "logf64" => codegen_simple_intrinsic ! ( Log ) ,
461461 "maxnumf32" => codegen_simple_intrinsic ! ( Fmaxf ) ,
462462 "maxnumf64" => codegen_simple_intrinsic ! ( Fmax ) ,
463463 "min_align_of" => codegen_intrinsic_const ! ( ) ,
@@ -474,8 +474,8 @@ impl<'tcx> GotocCtx<'tcx> {
474474 "offset" => unreachable ! (
475475 "Expected `core::intrinsics::unreachable` to be handled by `BinOp::OffSet`"
476476 ) ,
477- "powf32" => unstable_codegen ! ( codegen_simple_intrinsic!( Powf ) ) ,
478- "powf64" => unstable_codegen ! ( codegen_simple_intrinsic!( Pow ) ) ,
477+ "powf32" => codegen_simple_intrinsic ! ( Powf ) ,
478+ "powf64" => codegen_simple_intrinsic ! ( Pow ) ,
479479 "powif32" => unstable_codegen ! ( codegen_simple_intrinsic!( Powif ) ) ,
480480 "powif64" => unstable_codegen ! ( codegen_simple_intrinsic!( Powi ) ) ,
481481 "pref_align_of" => codegen_intrinsic_const ! ( ) ,
0 commit comments