[llvm] r203739 - Fix typo in comment: "inwoke" -> "invoke"

Mark Seaborn mseaborn at chromium.org
Wed Mar 12 17:04:17 PDT 2014


Author: mseaborn
Date: Wed Mar 12 19:04:17 2014
New Revision: 203739

URL: http://llvm.org/viewvc/llvm-project?rev=203739&view=rev
Log:
Fix typo in comment: "inwoke" -> "invoke"

Modified:
    llvm/trunk/lib/Transforms/Scalar/GlobalMerge.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/GlobalMerge.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/GlobalMerge.cpp?rev=203739&r1=203738&r2=203739&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/GlobalMerge.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/GlobalMerge.cpp Wed Mar 12 19:04:17 2014
@@ -212,7 +212,7 @@ void GlobalMerge::setMustKeepGlobalVaria
        ++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<InvokeInst>(IBB->getTerminator());
       if (!II) continue;
 





More information about the llvm-commits mailing list