r237713 - Fix 'CFG graph' typo. NFC

Jonathan Roelofs jonathan at codesourcery.com
Tue May 19 11:51:57 PDT 2015


Author: jroelofs
Date: Tue May 19 13:51:56 2015
New Revision: 237713

URL: http://llvm.org/viewvc/llvm-project?rev=237713&view=rev
Log:
Fix 'CFG graph' typo. NFC

Patch by Jon Eyolfson!

Modified:
    cfe/trunk/lib/Analysis/CFG.cpp
    cfe/trunk/www/analyzer/checker_dev_manual.html

Modified: cfe/trunk/lib/Analysis/CFG.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/CFG.cpp?rev=237713&r1=237712&r2=237713&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/CFG.cpp (original)
+++ cfe/trunk/lib/Analysis/CFG.cpp Tue May 19 13:51:56 2015
@@ -203,9 +203,9 @@ int LocalScope::const_iterator::distance
   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)

Modified: cfe/trunk/www/analyzer/checker_dev_manual.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/analyzer/checker_dev_manual.html?rev=237713&r1=237712&r2=237713&view=diff
==============================================================================
--- cfe/trunk/www/analyzer/checker_dev_manual.html (original)
+++ cfe/trunk/www/analyzer/checker_dev_manual.html Tue May 19 13:51:56 2015
@@ -99,7 +99,7 @@ for developer guidelines and send your q
   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 





More information about the cfe-commits mailing list