arg_list_code.append(actual_arg.result())
result = "%s(%s)" % (self.function.result(),
', '.join(arg_list_code))
-# if self.wrapper_call or \
-# self.function.entry.is_unbound_cmethod and self.function.entry.type.is_overridable:
-# result = "(%s = 1, %s)" % (Naming.skip_dispatch_cname, result)
return result
def generate_result_code(self, code):
code.putln(code.error_goto_if_neg("__Pyx_InitCachedBuiltins()",
self.pos))
- code.putln("%s = 0;" % Naming.skip_dispatch_cname);
-
code.putln("/*--- Global init code ---*/")
self.generate_global_init_code(env, code)
typedef struct {PyObject **p; char *s; long n; char is_unicode; char intern; char is_identifier;} __Pyx_StringTabEntry; /*proto*/
-""" + """
-
-static int %(skip_dispatch_cname)s = 0;
-
-""" % { 'skip_dispatch_cname': Naming.skip_dispatch_cname }
+"""
if Options.gcc_branch_hints:
branch_prediction_macros = \