[PECOFF][Writer] Use a constant instead of a magic number.

llvm-svn: 185128
This commit is contained in:
Rui Ueyama 2013-06-28 03:52:41 +00:00
parent 157f34bd31
commit d059f360a3
1 changed files with 2 additions and 2 deletions

View File

@ -448,7 +448,7 @@ public:
RDataSectionChunk(const File &linkedFile, SectionHeaderTableChunk *table)
: SectionChunk(table, ".rdata", characteristics) {
// The data section should be aligned to disk sector.
_align = 512;
_align = SECTOR_SIZE;
// Extract executable atoms from the linked file and append them to this
// section.
@ -478,7 +478,7 @@ public:
DataSectionChunk(const File &linkedFile, SectionHeaderTableChunk *table)
: SectionChunk(table, ".data", characteristics) {
// The data section should be aligned to disk sector.
_align = 512;
_align = SECTOR_SIZE;
// Extract executable atoms from the linked file and append them to this
// section.