[pypy-commit] pypy ppc-backend-2: Fix typo in math_sqrt method name.

edelsohn noreply at buildbot.pypy.org
Thu Jun 7 16:56:15 CEST 2012


Author: edelsohn
Branch: ppc-backend-2
Changeset: r55468:e508fcd5ac01
Date: 2012-06-07 10:55 -0400
http://bitbucket.org/pypy/pypy/changeset/e508fcd5ac01/

Log:	Fix typo in math_sqrt method name.

diff --git a/pypy/jit/backend/ppc/opassembler.py b/pypy/jit/backend/ppc/opassembler.py
--- a/pypy/jit/backend/ppc/opassembler.py
+++ b/pypy/jit/backend/ppc/opassembler.py
@@ -200,7 +200,7 @@
         l0, res = arglocs
         self.mc.fabs(res.value, l0.value)
 
-    def emit_float_sqrt(self, op, arglocs, regalloc):
+    def emit_math_sqrt(self, op, arglocs, regalloc):
         l0, res = arglocs
         self.mc.fsqrt(res.value, l0.value)
 


More information about the pypy-commit mailing list