Index: clang/lib/Format/UnwrappedLineParser.cpp =================================================================== --- clang/lib/Format/UnwrappedLineParser.cpp +++ clang/lib/Format/UnwrappedLineParser.cpp @@ -1954,6 +1954,9 @@ nextToken(); if (FormatTok->Tok.is(tok::l_paren)) parseParens(); + // handle [[likely]] / [[unlikely]] + if (FormatTok->is(tok::l_square)) + parseSquare(); bool NeedsUnwrappedLine = false; if (FormatTok->Tok.is(tok::l_brace)) { CompoundStatementIndenter Indenter(this, Style, Line->Level); @@ -1970,6 +1973,9 @@ } if (FormatTok->Tok.is(tok::kw_else)) { nextToken(); + // handle [[likely]] / [[unlikely]] + if (FormatTok->is(tok::l_square)) + parseSquare(); if (FormatTok->Tok.is(tok::l_brace)) { CompoundStatementIndenter Indenter(this, Style, Line->Level); parseBlock(/*MustBeDeclaration=*/false); Index: clang/unittests/Format/FormatTest.cpp =================================================================== --- clang/unittests/Format/FormatTest.cpp +++ clang/unittests/Format/FormatTest.cpp @@ -15849,6 +15849,36 @@ verifyFormat("operator&&(int(&&)(), class Foo);", Style); } +TEST_F(FormatTest, LikelyUnlikely) { + FormatStyle Style = getLLVMStyle(); + + verifyFormat("if (argc > 5) [[unlikely]] {\n" + " return 29;\n" + "}", + Style); + + verifyFormat("if (argc > 5) [[likely]] {\n" + " return 29;\n" + "}", + Style); + + verifyFormat("if (argc > 5) [[unlikely]] {\n" + " return 29;\n" + "} else [[likely]] {\n" + " return 42;\n" + "}\n", + Style); + + verifyFormat("if (argc > 5) [[unlikely]] {\n" + " return 29;\n" + "} else if (argc > 10) [[likely]] {\n" + " return 99;\n" + "} else {\n" + " return 42;\n" + "}\n", + Style); +} + } // namespace } // namespace format } // namespace clang