Author: Brian Kearns <[email protected]>
Branch: 
Changeset: r62817:2a4ce34c27a8
Date: 2013-03-26 17:22 -0400
http://bitbucket.org/pypy/pypy/changeset/2a4ce34c27a8/

Log:    this backend_name too

diff --git a/rpython/jit/backend/arm/runner.py 
b/rpython/jit/backend/arm/runner.py
--- a/rpython/jit/backend/arm/runner.py
+++ b/rpython/jit/backend/arm/runner.py
@@ -106,10 +106,10 @@
         return l
 
     def build_regalloc(self):
-       ''' for tests'''
-       from rpython.jit.backend.arm.regalloc import Regalloc
-       assert self.assembler is not None
-       return Regalloc(self.assembler)
+        ''' for tests'''
+        from rpython.jit.backend.arm.regalloc import Regalloc
+        assert self.assembler is not None
+        return Regalloc(self.assembler)
 
 class CPU_ARM(AbstractARMCPU):
     """ARM v7 uses softfp ABI, requires vfp"""
@@ -126,7 +126,6 @@
 class CPU_ARMv6(AbstractARMCPU):
     """ ARM v6, uses hardfp ABI, requires vfp"""
     use_hf_abi = True
-    backend_name = "armv6"
+    backend_name = "armv6hf"
     supports_floats = False
     supports_singlefloats = False
-    
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to