@@ -296,11 +296,7 @@ fn bin_op_simd_float_first<'tcx, F: rustc_apfloat::Float>(
296
296
this. write_scalar ( res0, & this. project_index ( & dest, 0 ) ?) ?;
297
297
298
298
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) ?) ?;
304
300
}
305
301
306
302
Ok ( ( ) )
@@ -421,11 +417,7 @@ fn unary_op_ss<'tcx>(
421
417
this. write_scalar ( res0, & this. project_index ( & dest, 0 ) ?) ?;
422
418
423
419
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) ?) ?;
429
421
}
430
422
431
423
Ok ( ( ) )
@@ -481,11 +473,7 @@ fn round_first<'tcx, F: rustc_apfloat::Float>(
481
473
) ?;
482
474
483
475
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) ?) ?;
489
477
}
490
478
491
479
Ok ( ( ) )
0 commit comments