diff options
author | Alexey Samsonov <samsonov@google.com> | 2012-12-24 08:52:53 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2012-12-24 08:52:53 +0000 |
commit | 098842b401a1bc1103980de182899563e63f518e (patch) | |
tree | da69cec359277347f080aa536196dd3b6f74a855 | |
parent | ad8ab3d9ea6f2e00795ffcbc5eea3dfd384e652a (diff) | |
download | bcm5719-llvm-098842b401a1bc1103980de182899563e63f518e.tar.gz bcm5719-llvm-098842b401a1bc1103980de182899563e63f518e.zip |
Fix typo in comments
llvm-svn: 171021
-rw-r--r-- | llvm/lib/Transforms/Utils/Local.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/Local.cpp b/llvm/lib/Transforms/Utils/Local.cpp index 58f3b758166..7c18a38829a 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. // |