Skip to content

Commit 14d6f73

Browse files
committed
cargo fmt
1 parent bf63d4a commit 14d6f73

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

crates/compiler-core/src/marshal.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -250,9 +250,8 @@ pub fn deserialize_code<R: Read, Bag: ConstantBag>(
250250
let locations = linetable_to_locations(&linetable, first_line_raw, instructions.len());
251251

252252
// Build localspluskinds from split vars (matching CodeObject's merged layout)
253-
let localspluskinds = build_localspluskinds_from_split(
254-
&lp.varnames, &lp.cellvars, &lp.freevars,
255-
);
253+
let localspluskinds =
254+
build_localspluskinds_from_split(&lp.varnames, &lp.cellvars, &lp.freevars);
256255

257256
Ok(CodeObject {
258257
instructions,
@@ -971,7 +970,6 @@ fn write_marshal_name_tuple<W: Write, N: AsRef<str>>(buf: &mut W, names: &[N]) {
971970
}
972971
}
973972

974-
975973
pub const FLAG_REF: u8 = 0x80;
976974

977975
/// Read a signed 32-bit LE integer.

0 commit comments

Comments
 (0)