[pypy-svn] pypy smalllong: Kill.

arigo commits-noreply at bitbucket.org
Sun Jan 9 14:20:21 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: smalllong
Changeset: r40520:6978dc5206c2
Date: 2011-01-09 14:18 +0100
http://bitbucket.org/pypy/pypy/changeset/6978dc5206c2/

Log:	Kill.

diff --git a/pypy/rpython/llinterp.py b/pypy/rpython/llinterp.py
--- a/pypy/rpython/llinterp.py
+++ b/pypy/rpython/llinterp.py
@@ -1045,20 +1045,6 @@
         except OverflowError:
             self.make_llexception()
 
-    def op_llong_neg_ovf(self, x):
-        assert type(x) is r_longlong
-        try:
-            return ovfcheck(-x)
-        except OverflowError:
-            self.make_llexception()
-
-    def op_llong_abs_ovf(self, x):
-        assert type(x) is r_longlong
-        try:
-            return ovfcheck(abs(x))
-        except OverflowError:
-            self.make_llexception()
-
     def op_int_lshift_ovf(self, x, y):
         assert isinstance(x, int)
         assert isinstance(y, int)


More information about the Pypy-commit mailing list