[llvm] r313164 - [CFG] Fix typo in docblock: blocsk/blocks

Brian Gesiak via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 13 11:02:11 PDT 2017


Author: modocache
Date: Wed Sep 13 11:02:11 2017
New Revision: 313164

URL: http://llvm.org/viewvc/llvm-project?rev=313164&view=rev
Log:
[CFG] Fix typo in docblock: blocsk/blocks


Modified:
    llvm/trunk/include/llvm/Analysis/CFG.h

Modified: llvm/trunk/include/llvm/Analysis/CFG.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/CFG.h?rev=313164&r1=313163&r2=313164&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/CFG.h (original)
+++ llvm/trunk/include/llvm/Analysis/CFG.h Wed Sep 13 11:02:11 2017
@@ -59,7 +59,7 @@ bool isCriticalEdge(const TerminatorInst
 /// This function is linear with respect to the number of blocks in the CFG,
 /// walking down successors from From to reach To, with a fixed threshold.
 /// Using DT or LI allows us to answer more quickly. LI reduces the cost of
-/// an entire loop of any number of blocsk to be the same as the cost of a
+/// an entire loop of any number of blocks to be the same as the cost of a
 /// single block. DT reduces the cost by allowing the search to terminate when
 /// we find a block that dominates the block containing 'To'. DT is most useful
 /// on branchy code but not loops, and LI is most useful on code with loops but




More information about the llvm-commits mailing list