File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -494,14 +494,14 @@ fn codegen_stmt<'tcx>(
494494 let val = crate :: constant:: codegen_tls_ref ( fx, def_id, lval. layout ( ) ) ;
495495 lval. write_cvalue ( fx, val) ;
496496 }
497- Rvalue :: BinaryOp ( bin_op, ref lhs, ref rhs) => {
497+ Rvalue :: BinaryOp ( bin_op, box ( ref lhs, ref rhs) ) => {
498498 let lhs = codegen_operand ( fx, lhs) ;
499499 let rhs = codegen_operand ( fx, rhs) ;
500500
501501 let res = crate :: num:: codegen_binop ( fx, bin_op, lhs, rhs) ;
502502 lval. write_cvalue ( fx, res) ;
503503 }
504- Rvalue :: CheckedBinaryOp ( bin_op, ref lhs, ref rhs) => {
504+ Rvalue :: CheckedBinaryOp ( bin_op, box ( ref lhs, ref rhs) ) => {
505505 let lhs = codegen_operand ( fx, lhs) ;
506506 let rhs = codegen_operand ( fx, rhs) ;
507507
Original file line number Diff line number Diff line change 55 associated_type_bounds,
66 never_type,
77 try_blocks,
8+ box_patterns,
89 hash_drain_filter
910) ]
1011#![ warn( rust_2018_idioms) ]
You can’t perform that action at this time.
0 commit comments