[llvm-commits] [llvm] r139712 - /llvm/trunk/lib/DebugInfo/DWARFDebugArangeSet.h

Benjamin Kramer benny.kra at googlemail.com
Wed Sep 14 11:34:47 PDT 2011


Author: d0k
Date: Wed Sep 14 13:34:47 2011
New Revision: 139712

URL: http://llvm.org/viewvc/llvm-project?rev=139712&view=rev
Log:
DWARF: Reorder fields to reduce padding.

Modified:
    llvm/trunk/lib/DebugInfo/DWARFDebugArangeSet.h

Modified: llvm/trunk/lib/DebugInfo/DWARFDebugArangeSet.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/DWARFDebugArangeSet.h?rev=139712&r1=139711&r2=139712&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/DWARFDebugArangeSet.h (original)
+++ llvm/trunk/lib/DebugInfo/DWARFDebugArangeSet.h Wed Sep 14 13:34:47 2011
@@ -23,11 +23,11 @@
     // The total length of the entries for that set, not including the length
     // field itself.
     uint32_t Length;
-    // The DWARF version number.
-    uint16_t Version;
     // The offset from the beginning of the .debug_info section of the
     // compilation unit entry referenced by the table.
     uint32_t CuOffset;
+    // The DWARF version number.
+    uint16_t Version;
     // The size in bytes of an address on the target architecture. For segmented
     // addressing, this is the size of the offset portion of the address.
     uint8_t AddrSize;





More information about the llvm-commits mailing list