pike.git
/
src
/
program.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.c:5784:
} else { run_time_type=compile_type_to_runtime_type(type); /* FIXME: Shouldn't these special cases be * in compile_type_to_runtime_type()? */ switch(run_time_type) { case T_OBJECT: /* Make place for the object subtype. */
+
case T_MIXED:
case T_FUNCTION: no_this = 1; /* FALL_THROUGH */ case T_PROGRAM: run_time_type = T_MIXED; break; case T_INT: run_time_type = T_MIXED; INT_TYPE int_range[] = { MAX_INT32, MIN_INT32 }; if (get_int_type_range(type, int_range) &&