Skip to content

Commit b253678

Browse files
committed
Whitespace fixes
1 parent 31ab573 commit b253678

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc_mir/transform/const_prop.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -523,14 +523,14 @@ impl<'a, 'mir, 'tcx> ConstPropagator<'a, 'mir, 'tcx> {
523523
rval: &mut Rvalue<'tcx>,
524524
value: Const<'tcx>,
525525
source_info: SourceInfo,
526-
) {
526+
) {
527527
trace!("attepting to replace {:?} with {:?}", rval, value);
528528
self.ecx.validate_operand(
529529
value,
530530
vec![],
531531
None,
532532
true,
533-
).expect("value should already be a valid const");
533+
).expect("value should already be a valid const");
534534

535535
// FIXME> figure out what tho do when try_read_immediate fails
536536
let imm = self.use_ecx(source_info, |this| {

0 commit comments

Comments
 (0)