forked from OSchip/llvm-project
[Support/COFF] Make the order of members in symbol match the standard.
llvm-svn: 156785
This commit is contained in:
parent
b4e71e8f58
commit
e27086b0e8
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue