From: Jonathan Roelofs Date: Tue, 19 May 2015 18:51:56 +0000 (+0000) Subject: Fix 'CFG graph' typo. NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa730d58ae527a8fc48e2460b465259265d328eb;p=clang Fix 'CFG graph' typo. NFC Patch by Jon Eyolfson! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@237713 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/CFG.cpp b/lib/Analysis/CFG.cpp index 94fa1d931c..2744c5fbe7 100644 --- a/lib/Analysis/CFG.cpp +++ b/lib/Analysis/CFG.cpp @@ -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) diff --git a/www/analyzer/checker_dev_manual.html b/www/analyzer/checker_dev_manual.html index 9c7cd98efa..c2606f92ee 100644 --- a/www/analyzer/checker_dev_manual.html +++ b/www/analyzer/checker_dev_manual.html @@ -99,7 +99,7 @@ for developer guidelines and send your questions and proposals to which consists of a ProgramPoint and a ProgramState.

ProgramPoint - represents the corresponding location in the program (or the CFG graph). + represents the corresponding location in the program (or the CFG). ProgramPoint is also used to record additional information on when/how the state was added. For example, PostPurgeDeadSymbolsKind kind means that the state is the result of purging dead symbols - the