From: Michael J. Spencer Date: Mon, 14 May 2012 22:43:21 +0000 (+0000) Subject: [Support/COFF] Make the order of members in symbol match the standard. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=752026b69eb265750ca31f345579a4855c02d493;p=oota-llvm.git [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 --- diff --git a/include/llvm/Support/COFF.h b/include/llvm/Support/COFF.h index 88c60bac740..b18ba2b550c 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; };