Skip to content

Commit ec6fe11

Browse files
committed
fmt
1 parent f5fd967 commit ec6fe11

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/tools/miri/src/eval.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -270,12 +270,8 @@ pub fn create_ecx<'tcx>(
270270
) -> InterpResult<'tcx, InterpCx<'tcx, MiriMachine<'tcx>>> {
271271
let typing_env = ty::TypingEnv::fully_monomorphized();
272272
let layout_cx = LayoutCx::new(tcx, typing_env);
273-
let mut ecx = InterpCx::new(
274-
tcx,
275-
rustc_span::DUMMY_SP,
276-
typing_env,
277-
MiriMachine::new(config, layout_cx),
278-
);
273+
let mut ecx =
274+
InterpCx::new(tcx, rustc_span::DUMMY_SP, typing_env, MiriMachine::new(config, layout_cx));
279275

280276
// Some parts of initialization require a full `InterpCx`.
281277
MiriMachine::late_init(&mut ecx, config, {

0 commit comments

Comments
 (0)