diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3128865f72f..58e8f2bb4c4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2010-09-27 Jie Zhang + + * print-tree.c (print_node): Print in-constant-pool. + 2010-09-27 Uros Bizjak * config/i386/i386.h (CLASS_MAX_NREGS): Also handle XCmode. diff --git a/gcc/print-tree.c b/gcc/print-tree.c index 5ca762eecf2..dfd358974c7 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -439,6 +439,8 @@ print_node (FILE *file, const char *prefix, tree node, int indent) if (code == VAR_DECL && DECL_IN_TEXT_SECTION (node)) fputs (" in-text-section", file); + if (code == VAR_DECL && DECL_IN_CONSTANT_POOL (node)) + fputs (" in-constant-pool", file); if (code == VAR_DECL && DECL_COMMON (node)) fputs (" common", file); if (code == VAR_DECL && DECL_THREAD_LOCAL_P (node))