diff options
author | 2020-11-30 18:08:58 +0000 | |
---|---|---|
committer | 2020-11-30 18:08:58 +0000 | |
commit | 8e8a482d8ff6b9650b182094cecfdc33194fb26c (patch) | |
tree | dc7e835542226414013f7b92a2df71916182b57a /rpython | |
parent | WIP: require the user to explicitly define which error_value to use when usin... (diff) | |
download | pypy-8e8a482d8ff6b9650b182094cecfdc33194fb26c.tar.gz pypy-8e8a482d8ff6b9650b182094cecfdc33194fb26c.tar.bz2 pypy-8e8a482d8ff6b9650b182094cecfdc33194fb26c.zip |
temporary checkin to see whether disabling this breaks any test
Diffstat (limited to 'rpython')
-rw-r--r-- | rpython/translator/exceptiontransform.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpython/translator/exceptiontransform.py b/rpython/translator/exceptiontransform.py index d1c66874c8..61e3bf254e 100644 --- a/rpython/translator/exceptiontransform.py +++ b/rpython/translator/exceptiontransform.py @@ -261,7 +261,7 @@ class ExceptionTransformer(object): if block.canraise: need_exc_matching = True last_operation -= 1 - elif (len(block.exits) == 1 and + elif (False and len(block.exits) == 1 and # XXX block.exits[0].target is graph.returnblock and len(block.operations) and (block.exits[0].args[0].concretetype is lltype.Void or |