[PATCH] D125593: [clang-format] Handle "if consteval { ... }" for RemoveBracesLLVM
Owen Pan via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri May 13 21:20:43 PDT 2022
owenpan updated this revision to Diff 429406.
owenpan added a comment.
Fixed a bug and added a test case.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D125593/new/
https://reviews.llvm.org/D125593
Files:
clang/lib/Format/UnwrappedLineParser.cpp
clang/unittests/Format/FormatTest.cpp
Index: clang/unittests/Format/FormatTest.cpp
===================================================================
--- clang/unittests/Format/FormatTest.cpp
+++ clang/unittests/Format/FormatTest.cpp
@@ -25379,6 +25379,25 @@
"}",
Style);
+ verifyFormat("if consteval {\n"
+ " f();\n"
+ "} else {\n"
+ " g();\n"
+ "}",
+ Style);
+
+ verifyFormat("if not consteval {\n"
+ " f();\n"
+ "} else if (a) {\n"
+ " g();\n"
+ "}",
+ Style);
+
+ verifyFormat("if !consteval {\n"
+ " g();\n"
+ "}",
+ Style);
+
Style.ColumnLimit = 65;
verifyFormat("if (condition) {\n"
Index: clang/lib/Format/UnwrappedLineParser.cpp
===================================================================
--- clang/lib/Format/UnwrappedLineParser.cpp
+++ clang/lib/Format/UnwrappedLineParser.cpp
@@ -2473,7 +2473,12 @@
nextToken();
if (FormatTok->is(tok::exclaim))
nextToken();
+
+ bool KeepIfBraces = false;
+ bool KeepElseBraces = false;
if (FormatTok->is(tok::kw_consteval)) {
+ KeepIfBraces = true;
+ KeepElseBraces = true;
nextToken();
} else {
if (FormatTok->isOneOf(tok::kw_constexpr, tok::identifier))
@@ -2501,10 +2506,10 @@
parseUnbracedBody();
}
- bool KeepIfBraces = false;
if (Style.RemoveBracesLLVM) {
assert(!NestedTooDeep.empty());
- KeepIfBraces = (IfLeftBrace && !IfLeftBrace->MatchingParen) ||
+ KeepIfBraces = KeepIfBraces ||
+ (IfLeftBrace && !IfLeftBrace->MatchingParen) ||
NestedTooDeep.back() || IfBlockKind == IfStmtKind::IfOnly ||
IfBlockKind == IfStmtKind::IfElseIf;
}
@@ -2558,8 +2563,9 @@
return nullptr;
assert(!NestedTooDeep.empty());
- const bool KeepElseBraces =
- (ElseLeftBrace && !ElseLeftBrace->MatchingParen) || NestedTooDeep.back();
+ KeepElseBraces = KeepElseBraces ||
+ (ElseLeftBrace && !ElseLeftBrace->MatchingParen) ||
+ NestedTooDeep.back();
NestedTooDeep.pop_back();
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D125593.429406.patch
Type: text/x-patch
Size: 2190 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220514/eb491a0d/attachment.bin>
More information about the cfe-commits
mailing list