[Support/COFF] Make the order of members in symbol match the standard.

llvm-svn: 156785
This commit is contained in:
Michael J. Spencer 2012-05-14 22:43:21 +00:00
parent b4e71e8f58
commit e27086b0e8
1 changed files with 1 additions and 1 deletions

View File

@ -114,9 +114,9 @@ namespace COFF {
struct symbol {
char Name[NameSize];
uint32_t Value;
uint16_t SectionNumber;
uint16_t Type;
uint8_t StorageClass;
uint16_t SectionNumber;
uint8_t NumberOfAuxSymbols;
};