fixes typo

This commit is contained in:
2024-05-09 20:54:30 +02:00
parent 2e27b025cc
commit ee6a11dae6
2 changed files with 3 additions and 3 deletions

View File

@ -324,7 +324,7 @@ void vm_impl<ARCH>::gen_block_epilogue(jit_holder& jh){
cc.ret(jh.next_pc);
}
template <typename ARCH>
inline void vm_impl<ARCH>:: gen_raise(jit_holder& jh, uint16_t trap_id, uint16_t cause) {
inline void vm_impl<ARCH>::gen_raise(jit_holder& jh, uint16_t trap_id, uint16_t cause) {
auto& cc = jh.cc;
cc.comment("//gen_raise");
auto tmp1 = get_reg_for(jh, traits::TRAP_STATE);