diff options
author | Alp Toker <alp@nuanti.com> | 2013-10-29 02:35:28 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2013-10-29 02:35:28 +0000 |
commit | 6a03374526103cdb1abe182df5b1d5a4d9ed5f24 (patch) | |
tree | 3b44e8c874138ca27a6aa9d11bb11dca855aca62 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 10255c38bdff9aa3a80b1e5501d4dc1c84427a33 (diff) | |
download | bcm5719-llvm-6a03374526103cdb1abe182df5b1d5a4d9ed5f24.tar.gz bcm5719-llvm-6a03374526103cdb1abe182df5b1d5a4d9ed5f24.zip |
Fix "existant" typos
llvm-svn: 193579
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index f7db6188286..176e8505a2a 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -6451,7 +6451,7 @@ static void checkForCyclesHelper(const SDNode *N, void llvm::checkForCycles(const llvm::SDNode *N) { #ifdef XDEBUG - assert(N && "Checking nonexistant SDNode"); + assert(N && "Checking nonexistent SDNode"); SmallPtrSet<const SDNode*, 32> visited; SmallPtrSet<const SDNode*, 32> checked; checkForCyclesHelper(N, visited, checked); |