pike.git/
src/
docode.c
Branch:
Tag:
Non-build tags
All tags
No tags
2014-12-04
2014-12-04 19:26:00 by Martin Nilsson <nilsson@opera.com>
b81a1dad883d72fe3cff9eef009a19368eed83fe (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
bill/master_archive_support
mallocs nowdays return void*, so no need to case.
2086:
current_switch.less_label=-1; current_switch.greater_label=-1; current_switch.default_label=-1;
-
current_switch.jumptable=
(INT32 *)
xalloc(sizeof(INT32)*(cases*2+2));
-
jumptable=
(INT32 *)
xalloc(sizeof(INT32)*(cases*2+2));
+
current_switch.jumptable=xalloc(sizeof(INT32)*(cases*2+2));
+
jumptable=xalloc(sizeof(INT32)*(cases*2+2));
for(e=1; e<cases*2+2; e++) {