From: Mark Seaborn Date: Thu, 13 Mar 2014 00:04:17 +0000 (+0000) Subject: Fix typo in comment: "inwoke" -> "invoke" X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a7c85183c5899aba50b9a73e14de728d140e43c5;p=oota-llvm.git Fix typo in comment: "inwoke" -> "invoke" git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203739 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/GlobalMerge.cpp b/lib/Transforms/Scalar/GlobalMerge.cpp index 71b55ca0d14..e8a65e3b736 100644 --- a/lib/Transforms/Scalar/GlobalMerge.cpp +++ b/lib/Transforms/Scalar/GlobalMerge.cpp @@ -212,7 +212,7 @@ void GlobalMerge::setMustKeepGlobalVariables(Module &M) { ++IFn) { for (Function::iterator IBB = IFn->begin(), IEndBB = IFn->end(); IBB != IEndBB; ++IBB) { - // Follow the inwoke link to find the landing pad instruction + // Follow the invoke link to find the landing pad instruction const InvokeInst *II = dyn_cast(IBB->getTerminator()); if (!II) continue;