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 @@ -464,14 +464,14 @@ fn codegen_stmt<'tcx>(
464464 let val = crate :: constant:: codegen_tls_ref ( fx, def_id, lval. layout ( ) ) ;
465465 lval. write_cvalue ( fx, val) ;
466466 }
467- Rvalue :: BinaryOp ( bin_op, ref lhs, ref rhs) => {
467+ Rvalue :: BinaryOp ( bin_op, box ( ref lhs, ref rhs) ) => {
468468 let lhs = codegen_operand ( fx, lhs) ;
469469 let rhs = codegen_operand ( fx, rhs) ;
470470
471471 let res = crate :: num:: codegen_binop ( fx, bin_op, lhs, rhs) ;
472472 lval. write_cvalue ( fx, res) ;
473473 }
474- Rvalue :: CheckedBinaryOp ( bin_op, ref lhs, ref rhs) => {
474+ Rvalue :: CheckedBinaryOp ( bin_op, box ( ref lhs, ref rhs) ) => {
475475 let lhs = codegen_operand ( fx, lhs) ;
476476 let rhs = codegen_operand ( fx, rhs) ;
477477
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