[cfe-commits] r148368 - /cfe/trunk/lib/CodeGen/CodeGenModule.cpp

Nick Lewycky nicholas at mxc.ca
Tue Jan 17 17:50:13 PST 2012


Author: nicholas
Date: Tue Jan 17 19:50:13 2012
New Revision: 148368

URL: http://llvm.org/viewvc/llvm-project?rev=148368&view=rev
Log:
Fix special king of typo.

Modified:
    cfe/trunk/lib/CodeGen/CodeGenModule.cpp

Modified: cfe/trunk/lib/CodeGen/CodeGenModule.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CodeGenModule.cpp?rev=148368&r1=148367&r2=148368&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CodeGenModule.cpp (original)
+++ cfe/trunk/lib/CodeGen/CodeGenModule.cpp Tue Jan 17 19:50:13 2012
@@ -900,7 +900,7 @@
 CodeGenModule::isTriviallyRecursive(const FunctionDecl *FD) {
   StringRef Name;
   if (getCXXABI().getMangleContext().shouldMangleDeclName(FD)) {
-    // asm labels are a special king of mangling we have to support.
+    // asm labels are a special kind of mangling we have to support.
     AsmLabelAttr *Attr = FD->getAttr<AsmLabelAttr>();
     if (!Attr)
       return false;





More information about the cfe-commits mailing list