Author: Alex Gaynor <[email protected]>
Branch: float-bytes
Changeset: r53808:e4aadb22bb29
Date: 2012-03-19 15:24 -0500
http://bitbucket.org/pypy/pypy/changeset/e4aadb22bb29/

Log:    tabs?

diff --git a/pypy/jit/backend/x86/regalloc.py b/pypy/jit/backend/x86/regalloc.py
--- a/pypy/jit/backend/x86/regalloc.py
+++ b/pypy/jit/backend/x86/regalloc.py
@@ -767,12 +767,12 @@
     consider_cast_singlefloat_to_float = consider_cast_int_to_float
 
     def consider_convert_float_bytes_to_longlong(self, op):
-       if longlong.is_64_bit:
+        if longlong.is_64_bit:
             loc0 = self.xrm.make_sure_var_in_reg(op.getarg(0))
             loc1 = self.rm.force_allocate_reg(op.result)
             self.Perform(op, [loc0], loc1)
             self.xrm.possibly_free_var(op.getarg(0))
-       else:
+        else:
             loc0 = self.xrm.loc(op.getarg(0))
             loc1 = self.xrm.force_allocate_reg(op.result)
             self.Perform(op, [loc0], loc1)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to