Author: David Schneider <[email protected]>
Branch: arm-backed-float
Changeset: r44927:9a35d3450bf4
Date: 2011-06-10 20:38 +0200
http://bitbucket.org/pypy/pypy/changeset/9a35d3450bf4/
Log: it is not necesary to align by a word here
diff --git a/pypy/jit/backend/arm/assembler.py
b/pypy/jit/backend/arm/assembler.py
--- a/pypy/jit/backend/arm/assembler.py
+++ b/pypy/jit/backend/arm/assembler.py
@@ -307,7 +307,7 @@
# 1 separator byte
# 4 bytes for the faildescr
memsize = (len(arglocs)-1)*6+5
- memaddr = self.datablockwrapper.malloc_aligned(memsize, alignment=WORD)
+ memaddr = self.datablockwrapper.malloc_aligned(memsize, alignment=1)
mem = rffi.cast(rffi.CArrayPtr(lltype.Char), memaddr)
i = 0
j = 0
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit