Fix indirect calls

This commit is contained in:
Rerumu 2021-11-22 15:25:00 -05:00
parent 57b3c7f22a
commit 8f7007cfc6

View File

@ -375,7 +375,7 @@ impl CallIndirect {
fn output(&self, d: &mut Data, w: &mut dyn Write) -> Result<()> { fn output(&self, d: &mut Data, w: &mut dyn Write) -> Result<()> {
Call::write_result_list(self.result.clone(), w)?; Call::write_result_list(self.result.clone(), w)?;
write!(w, "TABLE_LIST[{}][", self.table)?; write!(w, "TABLE_LIST[{}].data[", self.table)?;
self.index.output(d, w)?; self.index.output(d, w)?;