diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-09-09 02:57:48 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-09-09 02:57:48 +0000 |
commit | f146cd1fa34bc503728eca268a4f8cf466241a40 (patch) | |
tree | c7db8844ae7711ff494ea41ae1cdd9d905f875e9 /clang/lib/Analysis/CFG.cpp | |
parent | 68df12f0c47b4cf0416d1a1b840841196b3d08a4 (diff) | |
download | bcm5719-llvm-f146cd1fa34bc503728eca268a4f8cf466241a40.tar.gz bcm5719-llvm-f146cd1fa34bc503728eca268a4f8cf466241a40.zip |
Remove stray ';' and convert tabs to spaces.
llvm-svn: 113466
Diffstat (limited to 'clang/lib/Analysis/CFG.cpp')
-rw-r--r-- | clang/lib/Analysis/CFG.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/lib/Analysis/CFG.cpp b/clang/lib/Analysis/CFG.cpp index 3dae83b564f..5977de60906 100644 --- a/clang/lib/Analysis/CFG.cpp +++ b/clang/lib/Analysis/CFG.cpp @@ -1941,17 +1941,17 @@ unsigned CFG::getNumBlkExprs() { //===----------------------------------------------------------------------===// bool CFGBlock::FilterEdge(const CFGBlock::FilterOptions &F, - const CFGBlock *From, const CFGBlock *To) { + const CFGBlock *From, const CFGBlock *To) { if (F.IgnoreDefaultsWithCoveredEnums) { // If the 'To' has no label or is labeled but the label isn't a // CaseStmt then filter this edge. if (const SwitchStmt *S = - dyn_cast_or_null<SwitchStmt>(From->getTerminator())) { + dyn_cast_or_null<SwitchStmt>(From->getTerminator())) { if (S->isAllEnumCasesCovered()) { - const Stmt *L = To->getLabel(); - if (!L || !isa<CaseStmt>(L)) - return true; + const Stmt *L = To->getLabel(); + if (!L || !isa<CaseStmt>(L)) + return true; } } } |