diff options
-rw-r--r-- | lib/Format/Format.cpp | 2 | ||||
-rw-r--r-- | unittests/Format/FormatTest.cpp | 17 |
2 files changed, 14 insertions, 5 deletions
diff --git a/lib/Format/Format.cpp b/lib/Format/Format.cpp index 35c1e403c6..7b3c575d0b 100644 --- a/lib/Format/Format.cpp +++ b/lib/Format/Format.cpp @@ -137,7 +137,7 @@ public: // FIXME: We need to check whether we're in a preprocessor directive, even // if all tokens fit - the next line might be a preprocessor directive, // too, in which case we need to account for the possible escaped newline. - if (Columns > Style.ColumnLimit || + if (Columns > Style.ColumnLimit - (Line.InPPDirective ? 1 : 0) || (Annotations[i].MustBreakBefore && Annotations[i].Type != TokenAnnotation::TT_CtorInitializerColon)) { FitsOnALine = false; diff --git a/unittests/Format/FormatTest.cpp b/unittests/Format/FormatTest.cpp index 27ca53c1ea..54999e1f63 100644 --- a/unittests/Format/FormatTest.cpp +++ b/unittests/Format/FormatTest.cpp @@ -413,11 +413,13 @@ TEST_F(FormatTest, EndOfFileEndsPPDirective) { } TEST_F(FormatTest, IndentsPPDirectiveInReducedSpace) { - // If the macro fits in one line, we have the full width. - verifyFormat("#define A(B)", getLLVMStyleWithColumns(12)); + // If the macro fits in one line, we still do not get the full + // line, as only the next line decides whether we need an escaped newline and + // thus use the last column. + verifyFormat("#define A(B)", getLLVMStyleWithColumns(13)); - verifyFormat("#define A(\\\n B)", getLLVMStyleWithColumns(11)); - verifyFormat("#define AA(\\\n B)", getLLVMStyleWithColumns(11)); + verifyFormat("#define A( \\\n B)", getLLVMStyleWithColumns(12)); + verifyFormat("#define AA(\\\n B)", getLLVMStyleWithColumns(12)); verifyFormat("#define A( \\\n A, B)", getLLVMStyleWithColumns(12)); } @@ -490,6 +492,13 @@ TEST_F(FormatTest, EscapedNewlineAtStartOfTokenInMacroDefinition) { getLLVMStyleWithColumns(11))); } +TEST_F(FormatTest, CalculateSpaceOnConsecutiveLinesInMacro) { + verifyFormat("#define A \\\n" + " int v( \\\n" + " a); \\\n" + " int i;", getLLVMStyleWithColumns(11)); +} + TEST_F(FormatTest, MixingPreprocessorDirectivesAndNormalCode) { EXPECT_EQ( "#define ALooooooooooooooooooooooooooooooooooooooongMacro(" |