From: Arthur Eubanks Date: Wed, 13 Apr 2022 21:36:30 +0000 (-0700) Subject: [clang-format] Skip preprocessor lines when finding the record lbrace X-Git-Tag: upstream/15.0.7~10406 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f14ebe91c5dd6be5b64a45e479291cd08676be0c;p=platform%2Fupstream%2Fllvm.git [clang-format] Skip preprocessor lines when finding the record lbrace With D117142, we would now format ``` struct A { #define A void f() { a(); } #endif }; ``` into ``` struct A { #ifdef A void f() { a(); } #endif }; ``` because we were looking for the record lbrace without skipping preprocess lines. Fixes https://github.com/llvm/llvm-project/issues/54901. Reviewed By: curdeius, owenpan Differential Revision: https://reviews.llvm.org/D123737 --- diff --git a/clang/lib/Format/UnwrappedLineFormatter.cpp b/clang/lib/Format/UnwrappedLineFormatter.cpp index e2dbc35..9154999 100644 --- a/clang/lib/Format/UnwrappedLineFormatter.cpp +++ b/clang/lib/Format/UnwrappedLineFormatter.cpp @@ -308,7 +308,7 @@ private: // Find the last line with lower level. auto J = I - 1; for (; J != AnnotatedLines.begin(); --J) - if ((*J)->Level < TheLine->Level) + if (!(*J)->InPPDirective && (*J)->Level < TheLine->Level) break; if ((*J)->Level >= TheLine->Level) return false; diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index e837dbd..bf4ba3d 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -12766,6 +12766,13 @@ TEST_F(FormatTest, PullInlineFunctionDefinitionsIntoSingleLine) { "};", MergeInlineOnly); + verifyFormat("class C {\n" + "#ifdef A\n" + " int f() { return 42; }\n" + "#endif\n" + "};", + MergeInlineOnly); + // Also verify behavior when BraceWrapping.AfterFunction = true MergeInlineOnly.BreakBeforeBraces = FormatStyle::BS_Custom; MergeInlineOnly.BraceWrapping.AfterFunction = true;