[llvm] r252918 - [ShrinkWrap] Fix a typo in a comment.

Quentin Colombet via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 12 10:16:27 PST 2015


Author: qcolombet
Date: Thu Nov 12 12:16:27 2015
New Revision: 252918

URL: http://llvm.org/viewvc/llvm-project?rev=252918&view=rev
Log:
[ShrinkWrap] Fix a typo in a comment.

Modified:
    llvm/trunk/lib/CodeGen/ShrinkWrap.cpp

Modified: llvm/trunk/lib/CodeGen/ShrinkWrap.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/ShrinkWrap.cpp?rev=252918&r1=252917&r2=252918&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/ShrinkWrap.cpp (original)
+++ llvm/trunk/lib/CodeGen/ShrinkWrap.cpp Thu Nov 12 12:16:27 2015
@@ -466,7 +466,7 @@ bool ShrinkWrap::isShrinkWrapEnabled(con
   switch (EnableShrinkWrapOpt) {
   case cl::BOU_UNSET:
     return TFI->enableShrinkWrapping(MF) &&
-      // Windows with CFI has some limitations that makes it impossible
+      // Windows with CFI has some limitations that make it impossible
       // to use shrink-wrapping.
       !MF.getTarget().getMCAsmInfo()->usesWindowsCFI();
   // If EnableShrinkWrap is set, it takes precedence on whatever the




More information about the llvm-commits mailing list