* print-tree.c (print_node): Print in-constant-pool.

From-SVN: r164647
This commit is contained in:
Jie Zhang 2010-09-27 10:16:44 +00:00 committed by Jie Zhang
parent bda38d2ec1
commit 1689205518
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2010-09-27 Jie Zhang <jie@codesourcery.com>
* print-tree.c (print_node): Print in-constant-pool.
2010-09-27 Uros Bizjak <ubizjak@gmail.com>
* config/i386/i386.h (CLASS_MAX_NREGS): Also handle XCmode.

View file

@ -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))