[Wisp-cvs] wisp/src evm.c,1.343,1.344
Status: Alpha
Brought to you by:
digg
From: <di...@us...> - 2004-10-10 20:50:55
|
Update of /cvsroot/wisp/wisp/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15398 Modified Files: evm.c Log Message: fixed a side effect in GIH_j to make Wisp work when compiled with gcc 3.3 Index: evm.c =================================================================== RCS file: /cvsroot/wisp/wisp/src/evm.c,v retrieving revision 1.343 retrieving revision 1.344 diff -u -d -r1.343 -r1.344 --- evm.c 10 Oct 2004 20:47:09 -0000 1.343 +++ evm.c 10 Oct 2004 20:49:43 -0000 1.344 @@ -176,8 +176,8 @@ IH_J: GIH (j); { /* XXX: these used to be done in a single statement - * but that doesn't seem to work in gcc's interpretation of - * side-effected statements */ + * but that doesn't seem to work in gcc 3.3's interpretation + * of side-effected statements */ signed long int delta = *IP++; IP += delta; NEXT; |