diff options
author | Brian Gesiak <modocache@gmail.com> | 2017-09-13 18:02:11 +0000 |
---|---|---|
committer | Brian Gesiak <modocache@gmail.com> | 2017-09-13 18:02:11 +0000 |
commit | fb1baef1c0f28a2ad9071843e2b620e2ee30aaf6 (patch) | |
tree | 4fd2bd4d98c9334482c2b9820c5124685398e280 | |
parent | bc26f726554e49f41113efdadbc3c7a12730b976 (diff) | |
download | bcm5719-llvm-fb1baef1c0f28a2ad9071843e2b620e2ee30aaf6.tar.gz bcm5719-llvm-fb1baef1c0f28a2ad9071843e2b620e2ee30aaf6.zip |
[CFG] Fix typo in docblock: blocsk/blocks
llvm-svn: 313164
-rw-r--r-- | llvm/include/llvm/Analysis/CFG.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Analysis/CFG.h b/llvm/include/llvm/Analysis/CFG.h index 35165f4061f..eab64176f0d 100644 --- a/llvm/include/llvm/Analysis/CFG.h +++ b/llvm/include/llvm/Analysis/CFG.h @@ -59,7 +59,7 @@ bool isCriticalEdge(const TerminatorInst *TI, unsigned SuccNum, /// 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 |