forked from OSchip/llvm-project
[obj2yaml, COFF] Assert that the alignment is not bogus
llvm-svn: 263839
This commit is contained in:
parent
18558b6d9e
commit
22b72c1564
|
@ -109,6 +109,7 @@ void COFFDumper::dumpSections(unsigned NumSections) {
|
|||
NewYAMLSection.Header.VirtualAddress = ObjSection.getAddress();
|
||||
NewYAMLSection.Header.VirtualSize = COFFSection->VirtualSize;
|
||||
NewYAMLSection.Alignment = ObjSection.getAlignment();
|
||||
assert(NewYAMLSection.Alignment <= 8192);
|
||||
|
||||
ArrayRef<uint8_t> sectionData;
|
||||
if (!ObjSection.isBSS())
|
||||
|
|
Loading…
Reference in New Issue