diff options
author | Alan Wu <[email protected]> | 2021-10-06 17:44:19 -0400 |
---|---|---|
committer | Alan Wu <[email protected]> | 2021-10-20 18:19:42 -0400 |
commit | 7c08538aa3a366409784f6a8b7aa013b85633803 (patch) | |
tree | cae00db737ff8fa27ba347f9a2960fe4f7e8fadd /vm_exec.c | |
parent | 884b6f3dbb33ef98fbfe96e7c70ccc8bb5735829 (diff) |
Cleanup diff against upstream. Add comments
I did a `git diff --stat` against upstream and looked at all the files
that are outside of YJIT to come up with these minor changes.
Diffstat (limited to 'vm_exec.c')
-rw-r--r-- | vm_exec.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -93,13 +93,8 @@ vm_exec_core(rb_execution_context_t *ec, VALUE initial) #define USE_MACHINE_REGS 1 #elif defined(__GNUC__) && defined(__powerpc64__) -#if 0 DECL_SC_REG(const VALUE *, pc, "14"); DECL_SC_REG(rb_control_frame_t *, cfp, "15"); -#else - register rb_control_frame_t *reg_cfp; - const VALUE *reg_pc; -#endif #define USE_MACHINE_REGS 1 #elif defined(__GNUC__) && defined(__aarch64__) |