aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/IR/LegacyPassManager.cpp
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2014-08-11 18:04:46 +0000
committerSylvestre Ledru <sylvestre@debian.org>2014-08-11 18:04:46 +0000
commit469de19a09313bb4705b8faf6dfda2e59eccdd26 (patch)
tree05c460091bf27613afca98f731d9b70f1b1d0fda /llvm/lib/IR/LegacyPassManager.cpp
parent975f3fb3e90179565b0b2d9e82e0f2ffe755b38e (diff)
downloadllvm-469de19a09313bb4705b8faf6dfda2e59eccdd26.zip
llvm-469de19a09313bb4705b8faf6dfda2e59eccdd26.tar.gz
llvm-469de19a09313bb4705b8faf6dfda2e59eccdd26.tar.bz2
Fix typos:
* libaries => libraries * avaiable => available llvm-svn: 215366
Diffstat (limited to 'llvm/lib/IR/LegacyPassManager.cpp')
-rw-r--r--llvm/lib/IR/LegacyPassManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/LegacyPassManager.cpp b/llvm/lib/IR/LegacyPassManager.cpp
index d3f3482..319915a 100644
--- a/llvm/lib/IR/LegacyPassManager.cpp
+++ b/llvm/lib/IR/LegacyPassManager.cpp
@@ -1684,7 +1684,7 @@ void MPPassManager::addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass) {
if (!FoundPass) {
FoundPass = RequiredPass;
// This should be guaranteed to add RequiredPass to the passmanager given
- // that we checked for an avaiable analysis above.
+ // that we checked for an available analysis above.
FPP->add(RequiredPass);
}
// Register P as the last user of FoundPass or RequiredPass.