@@ -296,11 +296,7 @@ fn bin_op_simd_float_first<'tcx, F: rustc_apfloat::Float>(
296296 this. write_scalar ( res0, & this. project_index ( & dest, 0 ) ?) ?;
297297
298298 for i in 1 ..dest_len {
299- this. copy_op (
300- & this. project_index ( & left, i) ?,
301- & this. project_index ( & dest, i) ?,
302- /*allow_transmute*/ false ,
303- ) ?;
299+ this. copy_op ( & this. project_index ( & left, i) ?, & this. project_index ( & dest, i) ?) ?;
304300 }
305301
306302 Ok ( ( ) )
@@ -421,11 +417,7 @@ fn unary_op_ss<'tcx>(
421417 this. write_scalar ( res0, & this. project_index ( & dest, 0 ) ?) ?;
422418
423419 for i in 1 ..dest_len {
424- this. copy_op (
425- & this. project_index ( & op, i) ?,
426- & this. project_index ( & dest, i) ?,
427- /*allow_transmute*/ false ,
428- ) ?;
420+ this. copy_op ( & this. project_index ( & op, i) ?, & this. project_index ( & dest, i) ?) ?;
429421 }
430422
431423 Ok ( ( ) )
@@ -481,11 +473,7 @@ fn round_first<'tcx, F: rustc_apfloat::Float>(
481473 ) ?;
482474
483475 for i in 1 ..dest_len {
484- this. copy_op (
485- & this. project_index ( & left, i) ?,
486- & this. project_index ( & dest, i) ?,
487- /*allow_transmute*/ false ,
488- ) ?;
476+ this. copy_op ( & this. project_index ( & left, i) ?, & this. project_index ( & dest, i) ?) ?;
489477 }
490478
491479 Ok ( ( ) )
0 commit comments