File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -464,14 +464,14 @@ fn codegen_stmt<'tcx>(
464
464
let val = crate :: constant:: codegen_tls_ref ( fx, def_id, lval. layout ( ) ) ;
465
465
lval. write_cvalue ( fx, val) ;
466
466
}
467
- Rvalue :: BinaryOp ( bin_op, ref lhs, ref rhs) => {
467
+ Rvalue :: BinaryOp ( bin_op, box ( ref lhs, ref rhs) ) => {
468
468
let lhs = codegen_operand ( fx, lhs) ;
469
469
let rhs = codegen_operand ( fx, rhs) ;
470
470
471
471
let res = crate :: num:: codegen_binop ( fx, bin_op, lhs, rhs) ;
472
472
lval. write_cvalue ( fx, res) ;
473
473
}
474
- Rvalue :: CheckedBinaryOp ( bin_op, ref lhs, ref rhs) => {
474
+ Rvalue :: CheckedBinaryOp ( bin_op, box ( ref lhs, ref rhs) ) => {
475
475
let lhs = codegen_operand ( fx, lhs) ;
476
476
let rhs = codegen_operand ( fx, rhs) ;
477
477
Original file line number Diff line number Diff line change 5
5
associated_type_bounds,
6
6
never_type,
7
7
try_blocks,
8
+ box_patterns,
8
9
hash_drain_filter
9
10
) ]
10
11
#![ warn( rust_2018_idioms) ]
You can’t perform that action at this time.
0 commit comments