From acc70efa1df443f9b6ad2c686787a379f3829a4e Mon Sep 17 00:00:00 2001 From: zadeck Date: Mon, 13 Sep 2004 22:51:01 +0000 Subject: New code to analyze file level static variables and to determine if they escape and also code to use this information to prune clobber lists. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87455 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cgraph.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'gcc/cgraph.c') diff --git a/gcc/cgraph.c b/gcc/cgraph.c index 6c93ac5f173..f8f0b7cd52a 100644 --- a/gcc/cgraph.c +++ b/gcc/cgraph.c @@ -474,6 +474,12 @@ dump_cgraph_node (FILE *f, struct cgraph_node *node) 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) -- cgit v1.2.1