summaryrefslogtreecommitdiffstats
path: root/clang/lib/Analysis/FixedAddressChecker.cpp
diff options
context:
space:
mode:
authorZhongxing Xu <xuzhongxing@gmail.com>2009-11-09 07:29:39 +0000
committerZhongxing Xu <xuzhongxing@gmail.com>2009-11-09 07:29:39 +0000
commit85000203bbea473e1f1e72d825ca943e8e2c0ba8 (patch)
tree386d1b393ccd4664d340fb3a541d546810ac6bfa /clang/lib/Analysis/FixedAddressChecker.cpp
parent2156c22b3c35d3bffbbd6cab80767cbf82284f22 (diff)
downloadbcm5719-llvm-85000203bbea473e1f1e72d825ca943e8e2c0ba8.tar.gz
bcm5719-llvm-85000203bbea473e1f1e72d825ca943e8e2c0ba8.zip
Put all long strings in 80-col.
llvm-svn: 86527
Diffstat (limited to 'clang/lib/Analysis/FixedAddressChecker.cpp')
-rw-r--r--clang/lib/Analysis/FixedAddressChecker.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/lib/Analysis/FixedAddressChecker.cpp b/clang/lib/Analysis/FixedAddressChecker.cpp
index fff451aebc4..e30e3d0ce1c 100644
--- a/clang/lib/Analysis/FixedAddressChecker.cpp
+++ b/clang/lib/Analysis/FixedAddressChecker.cpp
@@ -56,7 +56,9 @@ void FixedAddressChecker::PreVisitBinaryOperator(CheckerContext &C,
if (ExplodedNode *N = C.GenerateNode(B)) {
if (!BT)
BT = new BuiltinBug("Use fixed address",
- "Using a fixed address is not portable because that address will probably not be valid in all environments or platforms.");
+ "Using a fixed address is not portable because that "
+ "address will probably not be valid in all "
+ "environments or platforms.");
RangedBugReport *R = new RangedBugReport(*BT, BT->getDescription().c_str(),
N);
R->addRange(B->getRHS()->getSourceRange());
OpenPOWER on IntegriCloud