]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* dwarf2out.c (struct die_struct): Move die_tag to the end.
authorNathan Froyd <froydnj@codesourcery.com>
Tue, 10 Aug 2010 14:22:18 +0000 (14:22 +0000)
committerNathan Froyd <froydnj@gcc.gnu.org>
Tue, 10 Aug 2010 14:22:18 +0000 (14:22 +0000)
From-SVN: r163064

gcc/ChangeLog
gcc/dwarf2out.c

index 49d377b722d630006adac63e68aa4cbc797c937d..7bc5b2c891ee8a2d4d11d5c2038695dd6315705c 100644 (file)
@@ -1,3 +1,7 @@
+2010-08-10  Nathan Froyd  <froydnj@codesourcery.com>
+
+       * dwarf2out.c (struct die_struct): Move die_tag to the end.
+
 2010-08-09  Sofiane Naci  <sofiane.naci@arm.com>
 
     * config/arm/iterators.md: New file.
index 0f3bea860be6885c86a273e15e3878322e297020..ddecfc4acdb560f51aaea2c9fae9b95cfead892a 100644 (file)
@@ -5672,7 +5672,6 @@ DEF_VEC_ALLOC_O(dw_attr_node,gc);
    die_sib.  die_child points to the node *before* the "first" child node.  */
 
 typedef struct GTY((chain_circular ("%h.die_sib"))) die_struct {
-  enum dwarf_tag die_tag;
   union die_symbol_or_type_node
     {
       char * GTY ((tag ("0"))) die_symbol;
@@ -5690,6 +5689,7 @@ typedef struct GTY((chain_circular ("%h.die_sib"))) die_struct {
   /* Die is used and must not be pruned as unused.  */
   int die_perennial_p;
   unsigned int decl_id;
+  enum dwarf_tag die_tag;
 }
 die_node;