diff options
author | Kenneth Zadeck <zadeck@naturalbridge.com> | 2004-10-25 22:04:02 +0000 |
---|---|---|
committer | Kenneth Zadeck <zadeck@gcc.gnu.org> | 2004-10-25 22:04:02 +0000 |
commit | 85c33455eaf3dc5cb7eb98fa740a7d6c3253e90b (patch) | |
tree | f5edf79871bab25c355ea8297998d125638f8c5c /gcc/cgraph.c | |
parent | 218d1537056146abf3b2e386d314375346218571 (diff) | |
download | gcc-85c33455eaf3dc5cb7eb98fa740a7d6c3253e90b.zip gcc-85c33455eaf3dc5cb7eb98fa740a7d6c3253e90b.tar.gz gcc-85c33455eaf3dc5cb7eb98fa740a7d6c3253e90b.tar.bz2 |
patch to remove the analysis of module level static variables.
From-SVN: r89559
Diffstat (limited to 'gcc/cgraph.c')
-rw-r--r-- | gcc/cgraph.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc/cgraph.c b/gcc/cgraph.c index 7206251..edde1a9 100644 --- a/gcc/cgraph.c +++ b/gcc/cgraph.c @@ -471,15 +471,8 @@ dump_cgraph_node (FILE *f, struct cgraph_node *node) fprintf (f, " tree"); if (node->output) fprintf (f, " output"); - if (node->local.local) fprintf (f, " local"); - if (node->local.external) - fprintf (f, " external"); - if (node->local.calls_read_all) - fprintf (f, " calls_read_all"); - if (node->local.calls_write_all) - fprintf (f, " calls_write_all"); if (node->local.disregard_inline_limits) fprintf (f, " always_inline"); else if (node->local.inlinable) |