| --- /dev/null Thu Jan 01 00:00:00 1970 +0000 |
| +++ b/cgen/templates/default/call_function Fri May 11 16:21:51 2012 -0700 |
| @@ -0,0 +1,13 @@ |
| + |
| + TARGET(CALL_FUNCTION) |
| + { |
| + PyObject **sp; |
| + PCALL(PCALL_ALL); |
| + sp = stack_pointer; |
| + x= quickening_call_function(&sp, oparg); |
| + stack_pointer = sp; |
| + PUSH(x); |
| + if (x != NULL) |
| + DISPATCH(); |
| + goto on_error;; |
| + } |