From 22afaccd9ab77d46106e94c47907d955a014ae3f Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Wed, 18 Jan 2012 01:50:13 +0000 Subject: [PATCH] Fix special king of typo. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@148368 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/CodeGenModule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/CodeGenModule.cpp b/lib/CodeGen/CodeGenModule.cpp index 04eb57b80c..4f074eb178 100644 --- a/lib/CodeGen/CodeGenModule.cpp +++ b/lib/CodeGen/CodeGenModule.cpp @@ -900,7 +900,7 @@ bool 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(); if (!Attr) return false; -- 2.50.1