From 70d51a19c7fbf76bfbae5860c10cb5af959d2d25 Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Wed, 5 Jun 2013 00:52:32 +0000 Subject: [PATCH] tree-ssa-structalias.c (call_stmt_vars): Make static. * tree-ssa-structalias.c (call_stmt_vars): Make static. From-SVN: r199679 --- gcc/ChangeLog | 4 ++++ gcc/tree-ssa-structalias.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c168af85878..673102f36e2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2013-06-05 David Malcolm + + * tree-ssa-structalias.c (call_stmt_vars): Make static. + 2013-06-04 Jan Hubicka * 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 1bfe2b2476f..d7aeefe0b22 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. */