Whitespace fixes

This commit is contained in:
Wesley Wiser 2019-06-04 06:30:36 -04:00
parent 31ab573052
commit b2536781af

View File

@ -523,14 +523,14 @@ impl<'a, 'mir, 'tcx> ConstPropagator<'a, 'mir, 'tcx> {
rval: &mut Rvalue<'tcx>, rval: &mut Rvalue<'tcx>,
value: Const<'tcx>, value: Const<'tcx>,
source_info: SourceInfo, source_info: SourceInfo,
) { ) {
trace!("attepting to replace {:?} with {:?}", rval, value); trace!("attepting to replace {:?} with {:?}", rval, value);
self.ecx.validate_operand( self.ecx.validate_operand(
value, value,
vec![], vec![],
None, None,
true, true,
).expect("value should already be a valid const"); ).expect("value should already be a valid const");
// FIXME> figure out what tho do when try_read_immediate fails // FIXME> figure out what tho do when try_read_immediate fails
let imm = self.use_ecx(source_info, |this| { let imm = self.use_ecx(source_info, |this| {