Author: Armin Rigo <[email protected]>
Branch: stmgc-c4
Changeset: r66807:3f2fd641dfc7
Date: 2013-09-05 17:11 +0200
http://bitbucket.org/pypy/pypy/changeset/3f2fd641dfc7/

Log:    Fix

diff --git a/rpython/jit/backend/x86/assembler.py 
b/rpython/jit/backend/x86/assembler.py
--- a/rpython/jit/backend/x86/assembler.py
+++ b/rpython/jit/backend/x86/assembler.py
@@ -627,7 +627,7 @@
             self.cpu.profile_agent.native_code_written(name,
                                                        rawstart, full_size)
         return AsmInfo(ops_offset, rawstart + looppos,
-                       size_excluding_failure_stuff - looppos), operations
+                       size_excluding_failure_stuff - looppos)
 
     @rgc.no_release_gil
     def assemble_bridge(self, faildescr, inputargs, operations,
@@ -677,8 +677,7 @@
             self.cpu.profile_agent.native_code_written(name,
                                                        rawstart, fullsize)
         return AsmInfo(ops_offset, startpos + rawstart,
-                       codeendpos - startpos), operations
-        
+                       codeendpos - startpos)
 
     def write_pending_failure_recoveries(self):
         # for each pending guard, generate the code of the recovery stub
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to