Fix typo in comments
authorAlexey Samsonov <samsonov@google.com>
Mon, 24 Dec 2012 08:52:53 +0000 (08:52 +0000)
committerAlexey Samsonov <samsonov@google.com>
Mon, 24 Dec 2012 08:52:53 +0000 (08:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171021 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/Local.cpp

index 58f3b758166a3ac50f9b074c8c580603c3b4f180..7c18a38829ad81286afe964e7401cac6cf8237c0 100644 (file)
@@ -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.
   //