aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2012-04-20 10:56:29 +0200
committerThomas Schwinge <tschwinge@gcc.gnu.org>2012-04-20 10:56:29 +0200
commit4e0bd6d3f8a1b385d049d345775102199406de96 (patch)
tree46f33537a6a3f303f1b9db4dac62bd6794c7081e
parent552fd8e693c768ac355d6fa6bd2dfcb91eedafb7 (diff)
downloadgcc-4e0bd6d3f8a1b385d049d345775102199406de96.zip
gcc-4e0bd6d3f8a1b385d049d345775102199406de96.tar.gz
gcc-4e0bd6d3f8a1b385d049d345775102199406de96.tar.bz2
tree-dump.c (dequeue_and_dump): Dump the three child nodes.
gcc/ * tree-dump.c (dequeue_and_dump) <BIT_FIELD_REF>: Dump the three child nodes. From-SVN: r186615
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/tree-dump.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index fa68718..196fcd9 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2012-04-20 Thomas Schwinge <thomas@codesourcery.com>
+
+ * tree-dump.c (dequeue_and_dump) <BIT_FIELD_REF>: Dump the three child
+ nodes.
+
2012-04-20 Richard Guenther <rguenther@suse.de>
* tree-vect-loop.c (vect_analyze_loop_operations): Do not
diff --git a/gcc/tree-dump.c b/gcc/tree-dump.c
index 3e89cdf..4ed236b 100644
--- a/gcc/tree-dump.c
+++ b/gcc/tree-dump.c
@@ -1,6 +1,6 @@
/* Tree-dumping functionality for intermediate representation.
Copyright (C) 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
- 2010, 2011 Free Software Foundation, Inc.
+ 2010, 2011, 2012 Free Software Foundation, Inc.
Written by Mark Mitchell <mark@codesourcery.com>
This file is part of GCC.
@@ -596,6 +596,7 @@ dequeue_and_dump (dump_info_p di)
break;
case COMPONENT_REF:
+ case BIT_FIELD_REF:
dump_child ("op 0", TREE_OPERAND (t, 0));
dump_child ("op 1", TREE_OPERAND (t, 1));
dump_child ("op 2", TREE_OPERAND (t, 2));