aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'rpython/translator/backendopt/raisingop2direct_call.py')
-rw-r--r--rpython/translator/backendopt/raisingop2direct_call.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpython/translator/backendopt/raisingop2direct_call.py b/rpython/translator/backendopt/raisingop2direct_call.py
index 82d93d58e4..673ae6715c 100644
--- a/rpython/translator/backendopt/raisingop2direct_call.py
+++ b/rpython/translator/backendopt/raisingop2direct_call.py
@@ -8,9 +8,9 @@ def is_raisingop(op):
s = op.opname
if (not s.startswith('int_') and not s.startswith('uint_') and
not s.startswith('float_') and not s.startswith('llong_')):
- return False
+ return False
if not s.endswith('_zer') and not s.endswith('_ovf') and not s.endswith('_val'): #not s in special_operations:
- return False
+ return False
return True
def raisingop2direct_call(translator, graphs=None):