--- gforth/engine/engine.c 2002/12/24 23:40:29 1.53 +++ gforth/engine/engine.c 2003/01/19 23:35:33 1.56 @@ -1,6 +1,6 @@ /* Gforth virtual machine (aka inner interpreter) - Copyright (C) 1995,1996,1997,1998,2000 Free Software Foundation, Inc. + Copyright (C) 1995-2003 Free Software Foundation, Inc. This file is part of Gforth. @@ -270,15 +270,15 @@ Label *engine(Xt *ip0, Cell *sp0, Cell * /* the following entry is normally unused; it is there because its index indicates a does-handler */ CPU_DEP1, -#define INST_ADDR(name) (Label)&&I_##name +#define INST_ADDR(name) ((Label)&&I_##name) #include "prim_lab.i" #undef INST_ADDR (Label)&&after_last, (Label)0, -#define INST_ADDR(name) (Label)&&K_##name +#define INST_ADDR(name) ((Label)&&K_##name) #include "prim_lab.i" #undef INST_ADDR -#define INST_ADDR(name) (Label)&&J_##name +#define INST_ADDR(name) ((Label)&&J_##name) #include "prim_lab.i" #undef INST_ADDR };