@@ -296,10 +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
- ) ?;
299
+ this. copy_op ( & this. project_index ( & left, i) ?, & this. project_index ( & dest, i) ?) ?;
303
300
}
304
301
305
302
Ok ( ( ) )
@@ -420,10 +417,7 @@ fn unary_op_ss<'tcx>(
420
417
this. write_scalar ( res0, & this. project_index ( & dest, 0 ) ?) ?;
421
418
422
419
for i in 1 ..dest_len {
423
- this. copy_op (
424
- & this. project_index ( & op, i) ?,
425
- & this. project_index ( & dest, i) ?,
426
- ) ?;
420
+ this. copy_op ( & this. project_index ( & op, i) ?, & this. project_index ( & dest, i) ?) ?;
427
421
}
428
422
429
423
Ok ( ( ) )
@@ -479,10 +473,7 @@ fn round_first<'tcx, F: rustc_apfloat::Float>(
479
473
) ?;
480
474
481
475
for i in 1 ..dest_len {
482
- this. copy_op (
483
- & this. project_index ( & left, i) ?,
484
- & this. project_index ( & dest, i) ?,
485
- ) ?;
476
+ this. copy_op ( & this. project_index ( & left, i) ?, & this. project_index ( & dest, i) ?) ?;
486
477
}
487
478
488
479
Ok ( ( ) )
0 commit comments