Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r87103:10eaf9cac6ad
Date: 2016-09-14 08:43 +0200
http://bitbucket.org/pypy/pypy/changeset/10eaf9cac6ad/

Log:    profopt was accidentally silently disabled on all platforms, by
        7b21b053dd02.

diff --git a/rpython/translator/c/genc.py b/rpython/translator/c/genc.py
--- a/rpython/translator/c/genc.py
+++ b/rpython/translator/c/genc.py
@@ -275,6 +275,7 @@
         if retval and self.translator.platform.name == 'msvc':
             raise ValueError('Cannot do profile based optimization on MSVC,'
                     'it is not supported in free compiler version')
+        return retval
 
     def getentrypointptr(self):
         # XXX check that the entrypoint has the correct
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to