| --- /dev/null Thu Jan 01 00:00:00 1970 +0000 |
| +++ b/cgen/templates/default/unary_invert Fri May 11 16:21:51 2012 -0700 |
| @@ -0,0 +1,9 @@ |
| + |
| + TARGET(UNARY_INVERT) |
| + v = TOP(); |
| + x = PyNumber_Invert(v); |
| + Py_DECREF(v); |
| + SET_TOP(x); |
| + if (x != NULL) DISPATCH(); |
| + goto on_error;; |
| + |