Skip to content

Commit e46e3ab

Browse files
Fix formatting
1 parent 0afcfd6 commit e46e3ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/CIR/Dialect/Transforms/CIRSimplify.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,8 @@ struct SimplifySwitch : public OpRewritePattern<SwitchOp> {
236236
} else if (kind != cir::CaseOpKind::Equal && cascadingCases.size() > 1) {
237237
// If a Default, Anyof or Range case is found and there are previous
238238
// cascading cases, merge all of them into the last cascading case.
239-
// We don't currently fold case range statements with other case statements.
239+
// We don't currently fold case range statements with other case
240+
// statements.
240241
assert(!cir::MissingFeatures::foldRangeCase());
241242
CaseOp lastCascadingCase = cascadingCases.back();
242243
mergeCascadingInto(lastCascadingCase);

0 commit comments

Comments
 (0)