summaryrefslogtreecommitdiffstats
path: root/clang/lib
diff options
context:
space:
mode:
authorManuel Klimek <klimek@google.com>2013-01-07 09:24:17 +0000
committerManuel Klimek <klimek@google.com>2013-01-07 09:24:17 +0000
commit38ba11e492695b1b80821142af5f909e08aeb599 (patch)
tree8a009f0c488a95e3cdf7e41976ff313afef36546 /clang/lib
parent342cc255d0e107d84132744a8a021674fb46314a (diff)
downloadbcm5719-llvm-38ba11e492695b1b80821142af5f909e08aeb599.tar.gz
bcm5719-llvm-38ba11e492695b1b80821142af5f909e08aeb599.zip
Do not ever allow using the full line in preprocessor directives.
We would format: #define A \ int f(a); int i; as #define A \ int f(a);\ int i The fix will break up macro definitions that could fit a line, but hit the last column; fixing that is more involved, though, as it requires looking at the following line. llvm-svn: 171715
Diffstat (limited to 'clang/lib')
-rw-r--r--clang/lib/Format/Format.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Format/Format.cpp b/clang/lib/Format/Format.cpp
index 35c1e403c6d..7b3c575d0b1 100644
--- a/clang/lib/Format/Format.cpp
+++ b/clang/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;
OpenPOWER on IntegriCloud