aboutsummaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorManuel Klimek <klimek@google.com>2013-10-22 08:27:19 +0000
committerManuel Klimek <klimek@google.com>2013-10-22 08:27:19 +0000
commit45206cac6339a675348a5675b5744148d3aba2f4 (patch)
tree409f9f7c83af97b5a6f75855ee0a570d87d55d1c /unittests
parentc641709607d45bf97772e925647db6c94866c50a (diff)
downloadclang-45206cac6339a675348a5675b5744148d3aba2f4.tar.gz
Remove incorrect assert.
If we run into the second preprocessor branch chain, the first branch chain might have already set the maximum branch count on that level to something > 0. Fixes PR17645. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@193153 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Format/FormatTest.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/unittests/Format/FormatTest.cpp b/unittests/Format/FormatTest.cpp
index a7de81b267..20132f9ccc 100644
--- a/unittests/Format/FormatTest.cpp
+++ b/unittests/Format/FormatTest.cpp
@@ -2327,6 +2327,12 @@ TEST_F(FormatTest, LayoutStatementsAroundPreprocessorDirectives) {
getLLVMStyleWithColumns(28));
verifyFormat("#if 1\n"
"int i;");
+ verifyFormat(
+ "#if 1\n"
+ "#endif\n"
+ "#if 1\n"
+ "#else\n"
+ "#endif\n");
}
TEST_F(FormatTest, FormatsJoinedLinesOnSubsequentRuns) {