pike.git/
src/
interpret.c
Branch:
Tag:
Non-build tags
All tags
No tags
2017-08-23
2017-08-23 10:25:23 by Henrik Grubbström (Grubba) <grubba@grubba.org>
6ed06d0b62191e540ca2f946fcf3c7c8982b9987 (
10
lines) (+
5
/-
5
)
[
Show
|
Annotate
]
Branch:
8.1
Build: Moved some prototypes.
Fixes compilation issues --without-machine-code.
108:
static void do_trace_call(struct byte_buffer *buf, INT32 args); static void do_trace_func_return (int got_retval, struct object *o, int fun); static void do_trace_return (struct byte_buffer *buf, int got_retval);
+
static void do_trace_efun_call(const struct svalue *s, INT32 args);
+
#ifdef PIKE_DEBUG
+
static void do_trace_efun_return(const struct svalue *s, int got_retval);
+
#endif
void push_sp_mark(void) {
1582:
#pragma optimize("y", off) #endif
-
static void do_trace_efun_call(const struct svalue *s, INT32 args);
-
#ifdef PIKE_DEBUG
-
static void do_trace_efun_return(const struct svalue *s, int got_retval);
-
#endif
-
+
#include "interpret_functions_fixed.h" #if defined(PIKE_USE_MACHINE_CODE) && defined(_M_IX86)