pike.git/
src/
code/
amd64.h
Branch:
Tag:
Non-build tags
All tags
No tags
2013-08-16
2013-08-16 12:57:03 by Per Hedbor <ph@opera.com>
31060398f213698eb9db4effae4e0897cc31ecca (
7
lines) (+
2
/-
5
)
[
Show
|
Annotate
]
Branch:
7.9
Since NULL is no longer possible, simplify CALL_MACHINE_CODE
22:
#define CALL_MACHINE_CODE(pc) \ do { \
-
/* The test is needed to get the labels to work... */ \
-
if (pc) { \
+
((int (*)(struct Pike_interpreter_struct *))(pc)) (Pike_interpreter_pointer); \
-
goto inter_return_label; \
-
} \
+
} while(0)