Author: Armin Rigo <[email protected]>
Branch: shadowstack-perf-2
Changeset: r84825:61bd14e06c30
Date: 2016-05-29 21:10 +0200
http://bitbucket.org/pypy/pypy/changeset/61bd14e06c30/

Log:    Can't have inline=True with minimal_transform=False any more. Needs
        the following checkin to make sure the gc_enter_roots_frame is moved
        after the call, too

diff --git a/rpython/memory/gctransform/shadowstack.py 
b/rpython/memory/gctransform/shadowstack.py
--- a/rpython/memory/gctransform/shadowstack.py
+++ b/rpython/memory/gctransform/shadowstack.py
@@ -210,7 +210,7 @@
 
         self.thread_setup = thread_setup
         self.thread_run_ptr = getfn(thread_run, [], annmodel.s_None,
-                                    inline=True, minimal_transform=False)
+                                    minimal_transform=False)
         self.thread_die_ptr = getfn(thread_die, [], annmodel.s_None,
                                     minimal_transform=False)
         # no thread_before_fork_ptr here
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to