fixes typo
This commit is contained in:
parent
2e27b025cc
commit
ee6a11dae6
|
@ -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);
|
||||
|
|
|
@ -80,7 +80,7 @@ public:
|
|||
|
||||
protected:
|
||||
using super::get_ptr_for;
|
||||
using super::get_reg;
|
||||
using super::get_reg;
|
||||
using super::get_reg_for;
|
||||
using super::load_reg_from_mem;
|
||||
using super::write_reg_to_mem;
|
||||
|
@ -4757,7 +4757,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);
|
||||
|
|
Loading…
Reference in New Issue