diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2012-01-18 01:50:13 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2012-01-18 01:50:13 +0000 |
commit | 72cd229398c2ba402567c97725cc67d436060cc5 (patch) | |
tree | aff3de04cd90f16778a011d93d43a771772ca139 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | fbc0dff6f82b66ac476251b0b41318bd72f9a94c (diff) | |
download | bcm5719-llvm-72cd229398c2ba402567c97725cc67d436060cc5.tar.gz bcm5719-llvm-72cd229398c2ba402567c97725cc67d436060cc5.zip |
Fix special king of typo.
llvm-svn: 148368
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 04eb57b80cb..4f074eb1785 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/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; |