[pypy-svn] r69270 - pypy/branch/msvc-asmgcroot-2/pypy/translator/c/gcc

afa at codespeak.net afa at codespeak.net
Fri Nov 13 19:53:23 CET 2009


Author: afa
Date: Fri Nov 13 19:53:21 2009
New Revision: 69270

Modified:
   pypy/branch/msvc-asmgcroot-2/pypy/translator/c/gcc/trackgcroot.py
Log:
Replace tabs in literals.

Now that the buildbot failures are the same than the ones on trunk ({jit}, {own})
the branch is ready to merge!


Modified: pypy/branch/msvc-asmgcroot-2/pypy/translator/c/gcc/trackgcroot.py
==============================================================================
--- pypy/branch/msvc-asmgcroot-2/pypy/translator/c/gcc/trackgcroot.py	(original)
+++ pypy/branch/msvc-asmgcroot-2/pypy/translator/c/gcc/trackgcroot.py	Fri Nov 13 19:53:21 2009
@@ -1275,10 +1275,10 @@
 
         if self.format == 'msvc':
             print >> output, """\
-            TITLE	gcmaptable.s
+            TITLE\tgcmaptable.s
             .686P
             .XMM
-            .model	flat
+            .model\tflat
             """
 
         _variant(elf='\t.text',
@@ -1410,7 +1410,7 @@
         output.writelines(shapelines)
 
         if self.format == 'msvc':
-            print >> output, "_DATA	ENDS"
+            print >> output, "_DATA\tENDS"
             print >> output, "END"
 
     def process(self, iterlines, newfile, entrypoint='main', filename='?'):



More information about the Pypy-commit mailing list