diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-ssa-structalias.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c168af8..673102f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2013-06-05 David Malcolm <dmalcolm@redhat.com> + + * tree-ssa-structalias.c (call_stmt_vars): Make static. + 2013-06-04 Jan Hubicka <jh@suse.cz> * lto-cgraph.c (get_alias_symbol): Remove weakref sanity check. diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c index 1bfe2b2..d7aeefe 100644 --- a/gcc/tree-ssa-structalias.c +++ b/gcc/tree-ssa-structalias.c @@ -382,7 +382,7 @@ new_var_info (tree t, const char *name) /* A map mapping call statements to per-stmt variables for uses and clobbers specific to the call. */ -struct pointer_map_t *call_stmt_vars; +static struct pointer_map_t *call_stmt_vars; /* Lookup or create the variable for the call statement CALL. */ |