Shorten the name of the Symbol for temporary Wasm values

This commit is contained in:
Brian Carroll 2021-11-12 13:01:16 +00:00
parent 4b3538dc58
commit daf6771bf5
2 changed files with 3 additions and 3 deletions

View file

@ -439,7 +439,7 @@ impl<'a> CodeBuilder<'a> {
let new_len = self.vm_stack.len() - pops as usize;
self.vm_stack.truncate(new_len);
if push {
self.vm_stack.push(Symbol::WASM_ANONYMOUS_STACK_VALUE);
self.vm_stack.push(Symbol::WASM_TMP);
}
self.code.push(opcode as u8);