From: Alexander Kornienko Date: Tue, 10 Sep 2013 13:41:43 +0000 (+0000) Subject: Don't divide L and #x in macro definitions. Fixes http://llvm.org/PR17144 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=daa07e9ee76d438efa3c7e2c54b4d3d3ed19ea27;p=clang Don't divide L and #x in macro definitions. Fixes http://llvm.org/PR17144 Reviewers: djasper Reviewed By: djasper CC: cfe-commits, klimek Differential Revision: http://llvm-reviews.chandlerc.com/D1639 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@190408 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Format/TokenAnnotator.cpp b/lib/Format/TokenAnnotator.cpp index d9aef602d3..f10e68c340 100644 --- a/lib/Format/TokenAnnotator.cpp +++ b/lib/Format/TokenAnnotator.cpp @@ -1286,6 +1286,8 @@ bool TokenAnnotator::spaceRequiredBetween(const AnnotatedLine &Line, return false; if (Left.Type == TT_BlockComment && Left.TokenText.endswith("=*/")) return false; + if (Right.is(tok::hash) && Left.is(tok::identifier) && Left.TokenText == "L") + return false; return true; } diff --git a/unittests/Format/FormatTest.cpp b/unittests/Format/FormatTest.cpp index c7991b4711..7f6956e8bb 100644 --- a/unittests/Format/FormatTest.cpp +++ b/unittests/Format/FormatTest.cpp @@ -1930,6 +1930,7 @@ TEST_F(FormatTest, MacroDefinitionInsideStatement) { } TEST_F(FormatTest, HashInMacroDefinition) { + EXPECT_EQ("#define A(c) L#c", format("#define A(c) L#c", getLLVMStyle())); verifyFormat("#define A \\\n b #c;", getLLVMStyleWithColumns(11)); verifyFormat("#define A \\\n" " { \\\n"