summaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/CodeGenModule.cpp
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2012-01-18 01:50:13 +0000
committerNick Lewycky <nicholas@mxc.ca>2012-01-18 01:50:13 +0000
commit22afaccd9ab77d46106e94c47907d955a014ae3f (patch)
treedc65551d686f0661983ef23460177c3555af56c3 /lib/CodeGen/CodeGenModule.cpp
parent93c878ee093f2a233c32b29f074e6a3f511e333f (diff)
Fix special king of typo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@148368 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.cpp')
-rw-r--r--lib/CodeGen/CodeGenModule.cpp2
1 files changed, 1 insertions, 1 deletions
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<AsmLabelAttr>();
if (!Attr)
return false;