Skip to content

Commit

Permalink
Fix 'CFG graph' typo. NFC
Browse files Browse the repository at this point in the history
Patch by Jon Eyolfson!


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@237713 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
jroelofs committed May 19, 2015
1 parent a783000 commit aa730d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions lib/Analysis/CFG.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,9 @@ int LocalScope::const_iterator::distance(LocalScope::const_iterator L) {
return D;
}

/// BlockScopePosPair - Structure for specifying position in CFG during its
/// build process. It consists of CFGBlock that specifies position in CFG graph
/// and LocalScope::const_iterator that specifies position in LocalScope graph.
/// Structure for specifying position in CFG during its build process. It
/// consists of CFGBlock that specifies position in CFG and
/// LocalScope::const_iterator that specifies position in LocalScope graph.
struct BlockScopePosPair {
BlockScopePosPair() : block(nullptr) {}
BlockScopePosPair(CFGBlock *b, LocalScope::const_iterator scopePos)
Expand Down
2 changes: 1 addition & 1 deletion www/analyzer/checker_dev_manual.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ <h2 id=analyzer>Static Analyzer Overview</h2>
which consists of a <tt>ProgramPoint</tt> and a <tt>ProgramState</tt>.
<p>
<a href="http://clang.llvm.org/doxygen/classclang_1_1ProgramPoint.html">ProgramPoint</a>
represents the corresponding location in the program (or the CFG graph).
represents the corresponding location in the program (or the CFG).
<tt>ProgramPoint</tt> is also used to record additional information on
when/how the state was added. For example, <tt>PostPurgeDeadSymbolsKind</tt>
kind means that the state is the result of purging dead symbols - the
Expand Down

0 comments on commit aa730d5

Please sign in to comment.