aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-dump.c
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2012-04-20 08:56:29 +0000
committerThomas Schwinge <thomas@codesourcery.com>2012-04-20 08:56:29 +0000
commite7457920faf09099dd25d036223fb94b3fdbd391 (patch)
tree46f33537a6a3f303f1b9db4dac62bd6794c7081e /gcc/tree-dump.c
parent8d53ab954719cf9d7dc6a8f3bc409de1c51d637b (diff)
gcc/
* tree-dump.c (dequeue_and_dump) <BIT_FIELD_REF>: Dump the three child nodes. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@186615 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-dump.c')
-rw-r--r--gcc/tree-dump.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/tree-dump.c b/gcc/tree-dump.c
index 3e89cdf11f3..4ed236b3d05 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));