[pypy-svn] r78460 - pypy/trunk/pypy/translator/c/gcc
afa at codespeak.net
afa at codespeak.net
Fri Oct 29 13:30:07 CEST 2010
Author: afa
Date: Fri Oct 29 13:30:06 2010
New Revision: 78460
Modified:
pypy/trunk/pypy/translator/c/gcc/trackgcroot.py
Log:
gcmaptable now uses ".quad" in all 64bit platforms
Modified: pypy/trunk/pypy/translator/c/gcc/trackgcroot.py
==============================================================================
--- pypy/trunk/pypy/translator/c/gcc/trackgcroot.py (original)
+++ pypy/trunk/pypy/translator/c/gcc/trackgcroot.py Fri Oct 29 13:30:06 2010
@@ -1599,7 +1599,7 @@
txt = kwargs[self.format]
print >> output, "\t%s" % txt
- if self.format == 'elf64':
+ if self.format in ('elf64', 'darwin64'):
word_decl = '.quad'
else:
word_decl = '.long'
More information about the Pypy-commit
mailing list