pike.git
/
src
/
docode.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/docode.c:166:
INT32 less_label, greater_label, default_label; INT32 values_on_stack; INT32 *jumptable; struct pike_type *type; }; static struct switch_data current_switch = {0, 0, 0, 0, 0, NULL, NULL}; void upd_int(int offset, INT32 tmp) {
-
MEMCPY
(Pike_compiler->new_program->program+offset, (char *)&tmp,sizeof(tmp));
+
memcpy
(Pike_compiler->new_program->program+offset, (char *)&tmp,sizeof(tmp));
} INT32 read_int(int offset) { return EXTRACT_INT(Pike_compiler->new_program->program+offset); } static int label_no=0; int alloc_label(void) { return ++label_no; }