aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/FixedAddressChecker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Analysis/FixedAddressChecker.cpp')
-rw-r--r--lib/Analysis/FixedAddressChecker.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Analysis/FixedAddressChecker.cpp b/lib/Analysis/FixedAddressChecker.cpp
index fff451aebc..e30e3d0ce1 100644
--- a/lib/Analysis/FixedAddressChecker.cpp
+++ b/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());