From 752026b69eb265750ca31f345579a4855c02d493 Mon Sep 17 00:00:00 2001 From: "Michael J. Spencer" Date: Mon, 14 May 2012 22:43:21 +0000 Subject: [PATCH] [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 --- include/llvm/Support/COFF.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }; -- 2.34.1