@@ -18,7 +18,6 @@ use rustc_span::{Span, DUMMY_SP};
18
18
use rustc_target:: abi:: { self , FieldIdx , FIRST_VARIANT } ;
19
19
20
20
use arrayvec:: ArrayVec ;
21
- use either:: Either ;
22
21
23
22
impl < ' a , ' tcx , Bx : BuilderMethods < ' a , ' tcx > > FunctionCx < ' a , ' tcx , Bx > {
24
23
#[ instrument( level = "trace" , skip( self , bx) ) ]
@@ -698,24 +697,16 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
698
697
}
699
698
mir:: Rvalue :: Use ( ref operand) => self . codegen_operand ( bx, operand) ,
700
699
mir:: Rvalue :: Repeat ( ..) => bug ! ( "{rvalue:?} in codegen_rvalue_operand" ) ,
701
- mir:: Rvalue :: Aggregate ( ref kind , ref fields) => {
700
+ mir:: Rvalue :: Aggregate ( _ , ref fields) => {
702
701
let ty = rvalue. ty ( self . mir , self . cx . tcx ( ) ) ;
703
702
let ty = self . monomorphize ( ty) ;
704
703
let layout = self . cx . layout_of ( ty) ;
705
704
706
- let field_indices = if let mir:: AggregateKind :: RawPtr ( ..) = * * kind {
707
- // `index_by_increasing_offset` gives an empty iterator for primitives
708
- Either :: Left ( [ 0_usize , 1_usize ] . iter ( ) . copied ( ) )
709
- } else {
710
- Either :: Right ( layout. fields . index_by_increasing_offset ( ) )
711
- } ;
712
- debug_assert_eq ! ( field_indices. len( ) , fields. len( ) ) ;
713
-
714
705
// `rvalue_creates_operand` has arranged that we only get here if
715
706
// we can build the aggregate immediate from the field immediates.
716
707
let mut inputs = ArrayVec :: < Bx :: Value , 2 > :: new ( ) ;
717
708
let mut input_scalars = ArrayVec :: < abi:: Scalar , 2 > :: new ( ) ;
718
- for field_idx in field_indices {
709
+ for field_idx in layout . fields . index_by_increasing_offset ( ) {
719
710
let field_idx = FieldIdx :: from_usize ( field_idx) ;
720
711
let op = self . codegen_operand ( bx, & fields[ field_idx] ) ;
721
712
let values = op. val . immediates_or_place ( ) . left_or_else ( |p| {
0 commit comments