diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-01-28 01:04:48 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-01-28 01:04:48 +0000 |
commit | 8acc9f6370865e200f1bf63dee5c48d8c28e2b06 (patch) | |
tree | 1db43e03ef4493e2717bc8540b8330de3474fd31 /lib/Sema/SemaChecking.cpp | |
parent | d5f2096e266b7905df660b7839e69e9ed6ba9018 (diff) |
Fix 80 col violation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94717 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaChecking.cpp')
-rw-r--r-- | lib/Sema/SemaChecking.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Sema/SemaChecking.cpp b/lib/Sema/SemaChecking.cpp index 97d30752c7..9305ff7562 100644 --- a/lib/Sema/SemaChecking.cpp +++ b/lib/Sema/SemaChecking.cpp @@ -2263,7 +2263,9 @@ void Sema::CheckUnreachable(AnalysisContext &AC) { CFGBlock &b = **I; if (!live[b.getBlockID()]) // Avoid excessive errors by marking everything reachable from here - lines.push_back(ErrLoc(MarkLiveTop(&b, live, Context.getSourceManager()), SourceRange(), SourceRange())); + lines.push_back(ErrLoc(MarkLiveTop(&b, live, + Context.getSourceManager()), + SourceRange(), SourceRange())); } } |