diff options
author | Sanjay Patel <spatel@rotateright.com> | 2016-06-30 21:02:40 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2016-06-30 21:02:40 +0000 |
commit | 2f9303a53de262fc7cef8d704cd477dbf6addb7a (patch) | |
tree | 8c6a9c83227c50db3f9c537f8ef83de3794c3a69 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | 1341d4cde19fc2a455ee82da86c0ee6934925111 (diff) | |
download | bcm5719-llvm-2f9303a53de262fc7cef8d704cd477dbf6addb7a.tar.gz bcm5719-llvm-2f9303a53de262fc7cef8d704cd477dbf6addb7a.zip |
fix typo; NFC
llvm-svn: 274278
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 bf2e66da692..fb1763551a3 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -2610,7 +2610,7 @@ static bool isVarDeclStrongDefinition(const ASTContext &Context, if (shouldBeInCOMDAT(CGM, *D)) return true; - // Declarations with a required alignment do not have common linakge in MSVC + // Declarations with a required alignment do not have common linkage in MSVC // mode. if (Context.getTargetInfo().getCXXABI().isMicrosoft()) { if (D->hasAttr<AlignedAttr>()) |