diff options
author | Shoaib Meenai <smeenai@fb.com> | 2019-01-09 20:05:16 +0000 |
---|---|---|
committer | Shoaib Meenai <smeenai@fb.com> | 2019-01-09 20:05:16 +0000 |
commit | 39287e759f9a2a53050d70b9b34b4be14f09d1e3 (patch) | |
tree | 9e564ba1fdbae8c60df0627ed41076d45f0e2d69 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | ac6454a7f6cca0c8703b4f8c9eac125879d80409 (diff) | |
download | bcm5719-llvm-39287e759f9a2a53050d70b9b34b4be14f09d1e3.tar.gz bcm5719-llvm-39287e759f9a2a53050d70b9b34b4be14f09d1e3.zip |
[CodeGen] Clarify comment about COFF common symbol alignment
After a discussion on the commit thread, it seems the 32 byte alignment
limitation is an MSVC toolchain artifact, not an inherent COFF
restriction. Clarify the comment accordingly, since saying COFF in the
comment but using isKnownWindowsMSVCEnvironment in the conditional is
confusing. Also add a newline before the comment, which is consistent
with the local style.
Differential Revision: https://reviews.llvm.org/D56466
llvm-svn: 350754
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index ab0ac67d8e8..244738042ce 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -3761,8 +3761,12 @@ static bool isVarDeclStrongDefinition(const ASTContext &Context, } } } - // COFF doesn't support alignments greater than 32, so these cannot be - // in common. + + // Microsoft's link.exe doesn't support alignments greater than 32 for common + // symbols, so symbols with greater alignment requirements cannot be common. + // Other COFF linkers (ld.bfd and LLD) support arbitrary power-of-two + // alignments for common symbols via the aligncomm directive, so this + // restriction only applies to MSVC environments. if (Context.getTargetInfo().getTriple().isKnownWindowsMSVCEnvironment() && Context.getTypeAlignIfKnown(D->getType()) > 32) return true; |