Fix typo in comment: "inwoke" -> "invoke"
authorMark Seaborn <mseaborn@chromium.org>
Thu, 13 Mar 2014 00:04:17 +0000 (00:04 +0000)
committerMark Seaborn <mseaborn@chromium.org>
Thu, 13 Mar 2014 00:04:17 +0000 (00:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203739 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/GlobalMerge.cpp

index 71b55ca0d146bc4a4300c4c1f3bf13fbc1dd01f9..e8a65e3b736dbf6285f5610d0a611fca2f6ae5f5 100644 (file)
@@ -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<InvokeInst>(IBB->getTerminator());
       if (!II) continue;