[llvm-commits] [llvm] r156785 - /llvm/trunk/include/llvm/Support/COFF.h

Michael J. Spencer bigcheesegs at gmail.com
Mon May 14 15:43:21 PDT 2012


Author: mspencer
Date: Mon May 14 17:43:21 2012
New Revision: 156785

URL: http://llvm.org/viewvc/llvm-project?rev=156785&view=rev
Log:
[Support/COFF] Make the order of members in symbol match the standard.

Modified:
    llvm/trunk/include/llvm/Support/COFF.h

Modified: llvm/trunk/include/llvm/Support/COFF.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/COFF.h?rev=156785&r1=156784&r2=156785&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/COFF.h (original)
+++ llvm/trunk/include/llvm/Support/COFF.h Mon May 14 17:43:21 2012
@@ -114,9 +114,9 @@
   struct symbol {
     char     Name[NameSize];
     uint32_t Value;
+    uint16_t SectionNumber;
     uint16_t Type;
     uint8_t  StorageClass;
-    uint16_t SectionNumber;
     uint8_t  NumberOfAuxSymbols;
   };
 





More information about the llvm-commits mailing list