diff options
author | David Malcolm <dmalcolm@redhat.com> | 2013-06-11 17:15:52 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2013-06-11 17:15:52 +0000 |
commit | ffa660121526da86900176b97caa8e1a1c5cc607 (patch) | |
tree | b3560fd13ef1e0577b2b976ef3370c001b68256a /gcc | |
parent | 783f2d35d457bf98b2cdd1a4f8f6f954031117eb (diff) | |
download | gcc-ffa660121526da86900176b97caa8e1a1c5cc607.zip gcc-ffa660121526da86900176b97caa8e1a1c5cc607.tar.gz gcc-ffa660121526da86900176b97caa8e1a1c5cc607.tar.bz2 |
final.c (debug_prefix_maps): Make static.
* final.c (debug_prefix_maps): Make static.
From-SVN: r199963
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/final.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 31b9e40..e1b7ce9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2013-06-11 David Malcolm <dmalcolm@redhat.com> + * final.c (debug_prefix_maps): Make static. + +2013-06-11 David Malcolm <dmalcolm@redhat.com> + * function.c (initial_trampoline): Remove stray copy. 2013-06-11 Sofiane Naci <sofiane.naci@arm.com> diff --git a/gcc/final.c b/gcc/final.c index c836e5d..d9b4408 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -1471,7 +1471,7 @@ typedef struct debug_prefix_map } debug_prefix_map; /* Linked list of such structures. */ -debug_prefix_map *debug_prefix_maps; +static debug_prefix_map *debug_prefix_maps; /* Record a debug file prefix mapping. ARG is the argument to |