diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2012-05-14 22:43:21 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2012-05-14 22:43:21 +0000 |
commit | 752026b69eb265750ca31f345579a4855c02d493 (patch) | |
tree | 8ea096fe6fa41f7f64deb26000bdf3327f5e5a65 | |
parent | 9cc178726f323fb859acd7f8fc657a939fe96566 (diff) |
[Support/COFF] Make the order of members in symbol match the standard.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156785 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Support/COFF.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/COFF.h b/include/llvm/Support/COFF.h index 88c60bac74..b18ba2b550 100644 --- a/include/llvm/Support/COFF.h +++ b/include/llvm/Support/COFF.h @@ -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; }; |