Skip to content

Commit c5586eb

Browse files
committed
tidy line length split
1 parent 0efb8e4 commit c5586eb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/librustc_mir/interpret/intrinsics.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ impl<'a, 'mir, 'tcx, M: Machine<'a, 'mir, 'tcx>> EvalContext<'a, 'mir, 'tcx, M>
133133
// For signed addition the saturated value depends on the
134134
// sign of either term
135135
if first_term & (1 << (num_bits-1)) == 0 { // signed term is positive
136-
Scalar::from_uint((1u128 << (num_bits - 1)) - 1, Size::from_bits(num_bits))
136+
Scalar::from_uint((1u128 << (num_bits - 1)) - 1,
137+
Size::from_bits(num_bits))
137138
} else { // signed term is negative
138139
Scalar::from_uint(1u128 << (num_bits - 1), Size::from_bits(num_bits))
139140
}

0 commit comments

Comments
 (0)