forked from OSchip/llvm-project
MC: rework static_assert to be MSVC compatible
Visual Studio does not permit referencing a structure member as a static field for sizeof calculations. Resort to a pointer cast which is compatible across Visual Studio and other compilers. llvm-svn: 206445
This commit is contained in:
parent
11a80dcb42
commit
1614b26886
|
@ -632,10 +632,8 @@ void WinCOFFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
|
|||
const MCAsmLayout &Layout) {
|
||||
// "Define" each section & symbol. This creates section & symbol
|
||||
// entries in the staging area.
|
||||
// FIXME: this used to be
|
||||
// sizeof(COFF::AuxiliaryFile::FileName) == COFF::SymbolSize
|
||||
// but VS2013 can't compile that.
|
||||
static_assert(sizeof(COFF::AuxiliaryFile) == COFF::SymbolSize,
|
||||
|
||||
static_assert(sizeof(((COFF::AuxiliaryFile *)0)->FileName) == COFF::SymbolSize,
|
||||
"size mismatch for COFF::AuxiliaryFile::FileName");
|
||||
for (auto FI = Asm.file_names_begin(), FE = Asm.file_names_end();
|
||||
FI != FE; ++FI) {
|
||||
|
|
Loading…
Reference in New Issue