[pypy-commit] pypy default: fix tabs, whatsnew

mattip pypy.commits at gmail.com
Tue Jul 16 07:59:11 EDT 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r97007:624e331a6fa0
Date: 2019-07-16 06:57 -0500
http://bitbucket.org/pypy/pypy/changeset/624e331a6fa0/

Log:	fix tabs, whatsnew

diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst
--- a/pypy/doc/whatsnew-head.rst
+++ b/pypy/doc/whatsnew-head.rst
@@ -45,3 +45,12 @@
 Instead, replace it in ``rewrite.py`` with a direct call to ``memcpy()`` and
 new basic operation, ``load_effective_address``, which the backend can
 even decide not to implement.
+
+.. branch: arm64
+Add a JIT backend for ARM64 (aarch64)
+
+.. branch: fix-test-vmprof-closed-file
+
+
+.. branch: fix_darwin_list_dir_test
+
diff --git a/rpython/jit/backend/aarch64/assembler.py b/rpython/jit/backend/aarch64/assembler.py
--- a/rpython/jit/backend/aarch64/assembler.py
+++ b/rpython/jit/backend/aarch64/assembler.py
@@ -980,9 +980,9 @@
 
     def reserve_gcref_table(self, allgcrefs):
         gcref_table_size = len(allgcrefs) * WORD
-	# align to a multiple of 16 and reserve space at the beginning
-	# of the machine code for the gc table.  This lets us write
-	# machine code with relative addressing (LDR literal).
+        # align to a multiple of 16 and reserve space at the beginning
+        # of the machine code for the gc table.  This lets us write
+        # machine code with relative addressing (LDR literal).
         gcref_table_size = (gcref_table_size + 15) & ~15
         mc = self.mc
         assert mc.get_relative_pos() == 0


More information about the pypy-commit mailing list