@@ -296,10 +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- ) ?;
299+ this. copy_op ( & this. project_index ( & left, i) ?, & this. project_index ( & dest, i) ?) ?;
303300 }
304301
305302 Ok ( ( ) )
@@ -420,10 +417,7 @@ fn unary_op_ss<'tcx>(
420417 this. write_scalar ( res0, & this. project_index ( & dest, 0 ) ?) ?;
421418
422419 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) ?) ?;
427421 }
428422
429423 Ok ( ( ) )
@@ -479,10 +473,7 @@ fn round_first<'tcx, F: rustc_apfloat::Float>(
479473 ) ?;
480474
481475 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) ?) ?;
486477 }
487478
488479 Ok ( ( ) )
0 commit comments