Commit 1d293941 authored by Stefan Behnel's avatar Stefan Behnel

Avoid clang compiler warning for potentially dead code.

parent de6c2c52
...@@ -9335,7 +9335,7 @@ class ParallelRangeNode(ParallelStatNode): ...@@ -9335,7 +9335,7 @@ class ParallelRangeNode(ParallelStatNode):
# TODO: check if the step is 0 and if so, raise an exception in a # TODO: check if the step is 0 and if so, raise an exception in a
# 'with gil' block. For now, just abort # 'with gil' block. For now, just abort
code.putln("if (%(step)s == 0) abort();" % fmt_dict) code.putln("if ((%(step)s == 0)) abort();" % fmt_dict)
self.setup_parallel_control_flow_block(code) # parallel control flow block self.setup_parallel_control_flow_block(code) # parallel control flow block
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment