diff options
author | jiez <jiez@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-27 10:16:44 +0000 |
---|---|---|
committer | jiez <jiez@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-27 10:16:44 +0000 |
commit | ce5b51891987dbc2b35a1ee3e2acddb876a22f33 (patch) | |
tree | 30de2e6869d2c9d201f306e147fcb8c1e7821bcb /gcc/print-tree.c | |
parent | 1484454345881c20dadc640f5aab32d5a34a65c8 (diff) | |
download | gcc-ce5b51891987dbc2b35a1ee3e2acddb876a22f33.tar.gz |
* print-tree.c (print_node): Print in-constant-pool.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@164647 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r-- | gcc/print-tree.c | 2 |
1 files changed, 2 insertions, 0 deletions
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)) |