aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Utils/Local.cpp
diff options
context:
space:
mode:
authorAlexey Samsonov <samsonov@google.com>2012-12-24 08:52:53 +0000
committerAlexey Samsonov <samsonov@google.com>2012-12-24 08:52:53 +0000
commit098842b401a1bc1103980de182899563e63f518e (patch)
treeda69cec359277347f080aa536196dd3b6f74a855 /llvm/lib/Transforms/Utils/Local.cpp
parentad8ab3d9ea6f2e00795ffcbc5eea3dfd384e652a (diff)
downloadllvm-098842b401a1bc1103980de182899563e63f518e.zip
llvm-098842b401a1bc1103980de182899563e63f518e.tar.gz
llvm-098842b401a1bc1103980de182899563e63f518e.tar.bz2
Fix typo in comments
llvm-svn: 171021
Diffstat (limited to 'llvm/lib/Transforms/Utils/Local.cpp')
-rw-r--r--llvm/lib/Transforms/Utils/Local.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/Local.cpp b/llvm/lib/Transforms/Utils/Local.cpp
index 58f3b75..7c18a38 100644
--- a/llvm/lib/Transforms/Utils/Local.cpp
+++ b/llvm/lib/Transforms/Utils/Local.cpp
@@ -605,7 +605,7 @@ bool llvm::TryToSimplifyUncondBranchFromEmptyBlock(BasicBlock *BB) {
// possible to handle such cases, but difficult: it requires checking whether
// BB dominates Succ, which is non-trivial to calculate in the case where
// Succ has multiple predecessors. Also, it requires checking whether
- // constructing the necessary self-referential PHI node doesn't intoduce any
+ // constructing the necessary self-referential PHI node doesn't introduce any
// conflicts; this isn't too difficult, but the previous code for doing this
// was incorrect.
//