format code & replace vec!(in arena;...) with arena.alloc([...])

This commit is contained in:
HajagosNorbert 2023-11-21 11:09:42 +01:00
parent 9c21ac1388
commit 6975294278
No known key found for this signature in database
GPG key ID: 807F4444870DB673
4 changed files with 22 additions and 14 deletions

View file

@ -856,7 +856,13 @@ trait Backend<'a> {
..
} => {
debug_assert!(indices.len() >= 2);
self.load_union_field_ptr_at_index(sym, structure, indices[0] as u16, indices[1], union_layout);
self.load_union_field_ptr_at_index(
sym,
structure,
indices[0] as u16,
indices[1],
union_layout,
);
}
Expr::GetTagId {
structure,