Skip to content

Commit 5a5fa15

Browse files
committed
style
1 parent 47bfd84 commit 5a5fa15

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/shims/intrinsics.rs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -313,11 +313,12 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
313313
this.write_scalar(Scalar::from_f64(res), dest)?;
314314
}
315315

316-
"exact_div" => this.exact_div(
317-
this.read_immediate(args[0])?,
318-
this.read_immediate(args[1])?,
319-
dest,
320-
)?,
316+
"exact_div" =>
317+
this.exact_div(
318+
this.read_immediate(args[0])?,
319+
this.read_immediate(args[1])?,
320+
dest,
321+
)?,
321322

322323
"forget" => {}
323324

0 commit comments

Comments
 (0)