This commit is contained in:
Folkert 2022-04-26 11:33:26 +02:00
parent 25561ff757
commit d3ef35d935
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
7 changed files with 14 additions and 14 deletions

View file

@ -396,7 +396,7 @@ impl<'a> CodeGenHelp<'a> {
}
fn create_symbol(&self, ident_ids: &mut IdentIds, debug_name: &str) -> Symbol {
let ident_id = ident_ids.add(&Ident::from(debug_name));
let ident_id = ident_ids.add_ident(&Ident::from(debug_name));
Symbol::new(self.home, ident_id)
}