diff options
Diffstat (limited to 'libyul')
-rw-r--r-- | libyul/optimiser/ExpressionJoiner.cpp | 2 | ||||
-rw-r--r-- | libyul/optimiser/ExpressionSplitter.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libyul/optimiser/ExpressionJoiner.cpp b/libyul/optimiser/ExpressionJoiner.cpp index 3dfab371..c3957497 100644 --- a/libyul/optimiser/ExpressionJoiner.cpp +++ b/libyul/optimiser/ExpressionJoiner.cpp @@ -56,7 +56,7 @@ void ExpressionJoiner::operator()(Switch& _switch) { visit(*_switch.expression); for (auto& _case: _switch.cases) - // Do not visit the case expression, nothing to unbreak there. + // Do not visit the case expression, nothing to join there. (*this)(_case.body); } diff --git a/libyul/optimiser/ExpressionSplitter.cpp b/libyul/optimiser/ExpressionSplitter.cpp index dab0545f..a2ecc546 100644 --- a/libyul/optimiser/ExpressionSplitter.cpp +++ b/libyul/optimiser/ExpressionSplitter.cpp @@ -56,14 +56,14 @@ void ExpressionSplitter::operator()(Switch& _switch) { outlineExpression(*_switch.expression); for (auto& _case: _switch.cases) - // Do not visit the case expression, nothing to break there. + // Do not visit the case expression, nothing to split there. (*this)(_case.body); } void ExpressionSplitter::operator()(ForLoop& _loop) { (*this)(_loop.pre); - // Do not visit the condition because we cannot break expressions there. + // Do not visit the condition because we cannot split expressions there. (*this)(_loop.post); (*this)(_loop.body); } |