[pypy-commit] pypy shadowstack-perf-2: fix

arigo pypy.commits at gmail.com
Sun Mar 5 04:21:58 EST 2017


Author: Armin Rigo <arigo at tunes.org>
Branch: shadowstack-perf-2
Changeset: r90556:89ea2cfa36b7
Date: 2017-03-05 10:19 +0100
http://bitbucket.org/pypy/pypy/changeset/89ea2cfa36b7/

Log:	fix

diff --git a/rpython/memory/gctransform/transform.py b/rpython/memory/gctransform/transform.py
--- a/rpython/memory/gctransform/transform.py
+++ b/rpython/memory/gctransform/transform.py
@@ -142,6 +142,9 @@
             any_inlining = self.inline and self.inline_helpers_into(graph)
             self.postprocess_graph(graph, any_inlining)
 
+    def postprocess_graph(self, graph, any_inlining):
+        pass
+
     def compute_borrowed_vars(self, graph):
         # the input args are borrowed, and stay borrowed for as long as they
         # are not merged with other values.


More information about the pypy-commit mailing list