Merge pull request #3723 from uweigand/isle-safepoint

ISLE: Allow emitting safepoint insns
This commit is contained in:
Chris Fallin
2022-01-25 08:56:22 -08:00
committed by GitHub
4 changed files with 19 additions and 12 deletions

View File

@@ -469,6 +469,6 @@ where
#[inline]
fn emit(&mut self, inst: &MInst) -> Unit {
self.emitted_insts.push(inst.clone());
self.emitted_insts.push((inst.clone(), false));
}
}