<p dir="ltr">Thanks :-)</p>
<div class="gmail_quote">On Dec 16, 2015 6:13 PM, "Eric Christopher via cfe-commits" <<a href="mailto:cfe-commits@lists.llvm.org">cfe-commits@lists.llvm.org</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: echristo<br>
Date: Wed Dec 16 17:10:46 2015<br>
New Revision: 255840<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=255840&view=rev" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project?rev=255840&view=rev</a><br>
Log:<br>
Fix funciton->function typo.<br>
<br>
Modified:<br>
    cfe/trunk/lib/ARCMigrate/ObjCMT.cpp<br>
    cfe/trunk/lib/AST/MicrosoftMangle.cpp<br>
    cfe/trunk/lib/CodeGen/CGDebugInfo.h<br>
<br>
Modified: cfe/trunk/lib/ARCMigrate/ObjCMT.cpp<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/ARCMigrate/ObjCMT.cpp?rev=255840&r1=255839&r2=255840&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/ARCMigrate/ObjCMT.cpp?rev=255840&r1=255839&r2=255840&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/lib/ARCMigrate/ObjCMT.cpp (original)<br>
+++ cfe/trunk/lib/ARCMigrate/ObjCMT.cpp Wed Dec 16 17:10:46 2015<br>
@@ -1524,7 +1524,7 @@ ObjCMigrateASTConsumer::CF_BRIDGING_KIND<br>
                                 FuncDecl->hasAttr<NSReturnsNotRetainedAttr>() ||<br>
                                 FuncDecl->hasAttr<NSReturnsAutoreleasedAttr>());<br>
<br>
-  // Trivial case of when funciton is annotated and has no argument.<br>
+  // Trivial case of when function is annotated and has no argument.<br>
   if (FuncIsReturnAnnotated && FuncDecl->getNumParams() == 0)<br>
     return CF_BRIDGING_NONE;<br>
<br>
@@ -1653,7 +1653,7 @@ void ObjCMigrateASTConsumer::migrateAddM<br>
     Editor->commit(commit);<br>
   }<br>
<br>
-  // Trivial case of when funciton is annotated and has no argument.<br>
+  // Trivial case of when function is annotated and has no argument.<br>
   if (MethodIsReturnAnnotated &&<br>
       (MethodDecl->param_begin() == MethodDecl->param_end()))<br>
     return;<br>
<br>
Modified: cfe/trunk/lib/AST/MicrosoftMangle.cpp<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/MicrosoftMangle.cpp?rev=255840&r1=255839&r2=255840&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/MicrosoftMangle.cpp?rev=255840&r1=255839&r2=255840&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/lib/AST/MicrosoftMangle.cpp (original)<br>
+++ cfe/trunk/lib/AST/MicrosoftMangle.cpp Wed Dec 16 17:10:46 2015<br>
@@ -422,7 +422,7 @@ void MicrosoftCXXNameMangler::mangleFunc<br>
     // We would like to mangle all extern "C" functions using this additional<br>
     // component but this would break compatibility with MSVC's behavior.<br>
     // Instead, do this when we know that compatibility isn't important (in<br>
-    // other words, when it is an overloaded extern "C" funciton).<br>
+    // other words, when it is an overloaded extern "C" function).<br>
     if (FD->isExternC() && FD->hasAttr<OverloadableAttr>())<br>
       Out << "$$J0";<br>
<br>
<br>
Modified: cfe/trunk/lib/CodeGen/CGDebugInfo.h<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGDebugInfo.h?rev=255840&r1=255839&r2=255840&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGDebugInfo.h?rev=255840&r1=255839&r2=255840&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/lib/CodeGen/CGDebugInfo.h (original)<br>
+++ cfe/trunk/lib/CodeGen/CGDebugInfo.h Wed Dec 16 17:10:46 2015<br>
@@ -574,7 +574,7 @@ public:<br>
   /// passing an empty SourceLocation to \a CGDebugInfo::setLocation()<br>
   /// will result in the last valid location being reused.  Note that<br>
   /// all instructions that do not have a location at the beginning of<br>
-  /// a function are counted towards to funciton prologue.<br>
+  /// a function are counted towards to function prologue.<br>
   static ApplyDebugLocation CreateEmpty(CodeGenFunction &CGF) {<br>
     return ApplyDebugLocation(CGF, true, SourceLocation());<br>
   }<br>
<br>
<br>
_______________________________________________<br>
cfe-commits mailing list<br>
<a href="mailto:cfe-commits@lists.llvm.org">cfe-commits@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits</a><br>
</blockquote></div>