diff options
author | Alp Toker <alp@nuanti.com> | 2014-05-15 01:52:21 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2014-05-15 01:52:21 +0000 |
commit | beaca19c7cd18df3df2ffb8fdeb216f262b807b8 (patch) | |
tree | 86630b2f0272f2f4dd12988e69d9fe8d9e1b339b /llvm/lib/Analysis | |
parent | c3f36af8d0bf287450f54f51ba73a5882689f839 (diff) | |
download | bcm5719-llvm-beaca19c7cd18df3df2ffb8fdeb216f262b807b8.tar.gz bcm5719-llvm-beaca19c7cd18df3df2ffb8fdeb216f262b807b8.zip |
Fix typos
llvm-svn: 208839
Diffstat (limited to 'llvm/lib/Analysis')
-rw-r--r-- | llvm/lib/Analysis/LazyCallGraph.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/LazyCallGraph.cpp b/llvm/lib/Analysis/LazyCallGraph.cpp index 50b532c07d0..e0736162a77 100644 --- a/llvm/lib/Analysis/LazyCallGraph.cpp +++ b/llvm/lib/Analysis/LazyCallGraph.cpp @@ -423,7 +423,7 @@ void LazyCallGraph::SCC::internalDFS( continue; } - // Track the lowest link of the childen, if any are still in the stack. + // Track the lowest link of the children, if any are still in the stack. // Any child not on the stack will have a LowLink of -1. assert(ChildN.LowLink != 0 && "Low-link must not be zero with a non-zero DFS number."); @@ -654,7 +654,7 @@ LazyCallGraph::SCC *LazyCallGraph::getNextSCCInPostOrder() { continue; } - // Track the lowest link of the childen, if any are still in the stack. + // Track the lowest link of the children, if any are still in the stack. assert(ChildN.LowLink != 0 && "Low-link must not be zero with a non-zero DFS number."); if (ChildN.LowLink >= 0 && ChildN.LowLink < N->LowLink) |