Skip to content

Commit

Permalink
Remove an unused #if 0 code
Browse files Browse the repository at this point in the history
  • Loading branch information
k0kubun committed Jul 12, 2023
1 parent 81beb29 commit b588fd5
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions vm_exec.c
Expand Up @@ -39,18 +39,6 @@ static void vm_analysis_insn(int insn);
static VALUE
vm_exec_core(rb_execution_context_t *ec, VALUE initial)
{

#if OPT_STACK_CACHING
#if 0
#elif __GNUC__ && __x86_64__
DECL_SC_REG(VALUE, a, "12");
DECL_SC_REG(VALUE, b, "13");
#else
register VALUE reg_a;
register VALUE reg_b;
#endif
#endif

#if defined(__GNUC__) && defined(__i386__)
DECL_SC_REG(const VALUE *, pc, "di");
DECL_SC_REG(rb_control_frame_t *, cfp, "si");
Expand Down

0 comments on commit b588fd5

Please sign in to comment.