pike.git/
src/
interpret_functions.h
Branch:
Tag:
Non-build tags
All tags
No tags
2006-04-25
2006-04-25 18:10:17 by David Hedbor <david@hedbor.org>
e7dc1cfff89ffdd634c299c66a2be91d1989ff99 (
7
lines) (+
5
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed error when compiling with an encient gcc 2.95.
Rev: src/interpret_functions.h:1.192
2:
|| This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: interpret_functions.h,v 1.
191
2006/
03
/
15
12
:
29
:
15
grubba
Exp $
+
|| $Id: interpret_functions.h,v 1.
192
2006/
04
/
25
18
:
10
:
17
neotron
Exp $
*/ /*
1326:
* inside catching_eval_instruction, we keep doing it until it's * time to return. */
+
int res;
+
DO_IF_DEBUG({ TRACE((3,"- Activating catch; calling %p in context %p\n", addr, Pike_interpreter.catch_ctx)); });
-
int
res = catching_eval_instruction (addr);
+
res = catching_eval_instruction (addr);
DO_IF_DEBUG({ TRACE((3,"- catching_eval_instruction(%p) returned %d\n",