aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Froyd <froydnj@codesourcery.com>2010-08-10 14:22:18 +0000
committerNathan Froyd <froydnj@gcc.gnu.org>2010-08-10 14:22:18 +0000
commit774038e62efa7caa5b00101fffcbe1df01686fd9 (patch)
tree60f8e21619c5b5765f47d3ee62be5f94fef1aaf1
parentb5c739f9f5969b4803b40467822b0b64e0ecd35e (diff)
downloadgcc-774038e62efa7caa5b00101fffcbe1df01686fd9.zip
gcc-774038e62efa7caa5b00101fffcbe1df01686fd9.tar.gz
gcc-774038e62efa7caa5b00101fffcbe1df01686fd9.tar.bz2
* dwarf2out.c (struct die_struct): Move die_tag to the end.
From-SVN: r163064
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/dwarf2out.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 49d377b..7bc5b2c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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.
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index 0f3bea8..ddecfc4 100644
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -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;