Skip to content
Snippets Groups Projects
Commit afea0050 authored by Per Hedbor's avatar Per Hedbor
Browse files

The prefix variables are not used when HAVE_COMPUTED_GOTO is true

Rev: src/interpreter.h:1.67
parent aceb2b2d
No related branches found
No related tags found
No related merge requests found
...@@ -103,11 +103,11 @@ ...@@ -103,11 +103,11 @@
static int eval_instruction(PIKE_OPCODE_T *pc) static int eval_instruction(PIKE_OPCODE_T *pc)
{ {
unsigned INT32 prefix2=0,prefix=0;
#ifdef HAVE_COMPUTED_GOTO #ifdef HAVE_COMPUTED_GOTO
static void *strap = &&init_strap; static void *strap = &&init_strap;
void *instr = NULL; void *instr = NULL;
#else /* !HAVE_COMPUTED_GOTO */ #else /* !HAVE_COMPUTED_GOTO */
unsigned INT32 prefix2=0,prefix=0;
unsigned INT32 instr; unsigned INT32 instr;
#endif /* HAVE_COMPUTED_GOTO */ #endif /* HAVE_COMPUTED_GOTO */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment