[pypy-svn] r64877 - pypy/branch/pyjitpl5/pypy/jit/backend/x86

arigo at codespeak.net arigo at codespeak.net
Thu Apr 30 19:48:53 CEST 2009


Author: arigo
Date: Thu Apr 30 19:48:49 2009
New Revision: 64877

Modified:
   pypy/branch/pyjitpl5/pypy/jit/backend/x86/assembler.py
Log:
Revert r64876.  Nonsense.


Modified: pypy/branch/pyjitpl5/pypy/jit/backend/x86/assembler.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/backend/x86/assembler.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/x86/assembler.py	Thu Apr 30 19:48:49 2009
@@ -51,9 +51,6 @@
     def tell(self):
         return self._mc.tell()
 
-    def O16(self):
-        self.mc.O16()
-
     def done(self):
         self._mc.done()
 
@@ -72,7 +69,7 @@
     return method
 
 for name in dir(codebuf.MachineCodeBlock):
-    if name.upper() == name and name != 'O16':
+    if name.upper() == name:
         setattr(MachineCodeBlockWrapper, name, _new_method(name))
 
 class MachineCodeStack(object):



More information about the Pypy-commit mailing list