OSDN Git Service

[obj2yaml, COFF] Assert that the alignment is not bogus
authorDavid Majnemer <david.majnemer@gmail.com>
Fri, 18 Mar 2016 21:51:14 +0000 (21:51 +0000)
committerDavid Majnemer <david.majnemer@gmail.com>
Fri, 18 Mar 2016 21:51:14 +0000 (21:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@263839 91177308-0d34-0410-b5e6-96231b3b80d8

tools/obj2yaml/coff2yaml.cpp

index 343ed12..aea6fe9 100644 (file)
@@ -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())