[Ups-cvs] ups/ups ci_compile_expr.c,1.4,1.5
Brought to you by:
ianedwards
From: Tom H. <th...@us...> - 2005-03-16 10:04:06
|
Update of /cvsroot/ups/ups/ups In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30234 Modified Files: ci_compile_expr.c Log Message: Change explicit 4 to sizeof(stackword_t) in code that decides whether to use OC_POP or one of the OC_POPMANY variants. Index: ci_compile_expr.c =================================================================== RCS file: /cvsroot/ups/ups/ups/ci_compile_expr.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ci_compile_expr.c 16 Mar 2005 10:01:55 -0000 1.4 --- ci_compile_expr.c 16 Mar 2005 10:03:55 -0000 1.5 *************** *** 978,982 **** if (bytes_to_pop != 0) { ! if (bytes_to_pop == 4) ci_code_opcode(tx, OC_POP); else { --- 978,982 ---- if (bytes_to_pop != 0) { ! if (bytes_to_pop == sizeof(stackword_t)) ci_code_opcode(tx, OC_POP); else { |