1
Fork 0

Add the function body span to StableMIR

This commit is contained in:
Celina G. Val 2023-12-18 17:10:16 -08:00
parent 2a7634047a
commit 36bb79fc5e
3 changed files with 9 additions and 2 deletions

View file

@ -37,6 +37,7 @@ impl<'tcx> Stable<'tcx> for mir::Body<'tcx> {
self.arg_count,
self.var_debug_info.iter().map(|info| info.stable(tables)).collect(),
self.spread_arg.stable(tables),
self.span.stable(tables),
)
}
}