Skip to content

Commit

Permalink
[clang-format] Respect ColumnLimit 0 line breaks in inline asm
Browse files Browse the repository at this point in the history
Previously, using ColumnLimit: 0 with extended inline asm with the
BreakBeforeInlineASMColon: OnlyMultiline option (the default style),
the formatter would act as if in Always mode, meaning a line break was
added before every colon in an extended inline assembly block.

This patch respects the already existing line breaks, and doesn't add
any new ones, if in ColumnLimit 0 mode.

Behaviour with Always stays as expected, with a break before every colon
regardless of any existing line breaks.

Behaviour with Never was broken before, and remains broken with this patch,
it is just never respected in ColumnLimit 0 mode.

Fixes #62754

Reviewed By: HazardyKnusperkeks, owenpan

Differential Revision: https://reviews.llvm.org/D150848
  • Loading branch information
rymiel committed Jun 23, 2023
1 parent ab94c1b commit 7a38b3b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
3 changes: 2 additions & 1 deletion clang/lib/Format/ContinuationIndenter.cpp
Expand Up @@ -357,7 +357,8 @@ bool ContinuationIndenter::mustBreak(const LineState &State) {
if (Current.MustBreakBefore ||
(Current.is(TT_InlineASMColon) &&
(Style.BreakBeforeInlineASMColon == FormatStyle::BBIAS_Always ||
Style.BreakBeforeInlineASMColon == FormatStyle::BBIAS_OnlyMultiline))) {
(Style.BreakBeforeInlineASMColon == FormatStyle::BBIAS_OnlyMultiline &&
Style.ColumnLimit > 0)))) {
return true;
}
if (CurrentState.BreakBeforeClosingBrace &&
Expand Down
18 changes: 18 additions & 0 deletions clang/unittests/Format/FormatTest.cpp
Expand Up @@ -4612,6 +4612,24 @@ TEST_F(FormatTest, FormatsInlineASM) {
format("__asm {\n"
"}\n"
"int i;"));

auto Style = getLLVMStyleWithColumns(0);
const StringRef Code1{"asm(\"xyz\" : \"=a\"(a), \"=d\"(b) : \"a\"(data));"};
const StringRef Code2{"asm(\"xyz\"\n"
" : \"=a\"(a), \"=d\"(b)\n"
" : \"a\"(data));"};
const StringRef Code3{"asm(\"xyz\" : \"=a\"(a), \"=d\"(b)\n"
" : \"a\"(data));"};

Style.BreakBeforeInlineASMColon = FormatStyle::BBIAS_OnlyMultiline;
verifyFormat(Code1, Style);
EXPECT_EQ(Code2, format(Code2, Style));
EXPECT_EQ(Code3, format(Code3, Style));

Style.BreakBeforeInlineASMColon = FormatStyle::BBIAS_Always;
EXPECT_EQ(Code2, format(Code1, Style));
EXPECT_EQ(Code2, format(Code2, Style));
EXPECT_EQ(Code2, format(Code3, Style));
}

TEST_F(FormatTest, FormatTryCatch) {
Expand Down

0 comments on commit 7a38b3b

Please sign in to comment.