diff options
author | Jason Merrill <merrill@gnu.org> | 1994-10-15 00:32:58 +0000 |
---|---|---|
committer | Jason Merrill <merrill@gnu.org> | 1994-10-15 00:32:58 +0000 |
commit | f37f4651e1bcb4d14b8540f8e317a975f897498d (patch) | |
tree | 79edc66aadee9a29dcabd34de52ad76f0db3f3b6 /gcc | |
parent | 2c51d187e0eef70f5960e398594d48dd5f146a7a (diff) | |
download | gcc-f37f4651e1bcb4d14b8540f8e317a975f897498d.zip gcc-f37f4651e1bcb4d14b8540f8e317a975f897498d.tar.gz gcc-f37f4651e1bcb4d14b8540f8e317a975f897498d.tar.bz2 |
(build_decl_overload): Set numeric_outputed_need_bar to 0.
From-SVN: r8273
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/method.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cp/method.c b/gcc/cp/method.c index 23fffe4..b22aa7c 100644 --- a/gcc/cp/method.c +++ b/gcc/cp/method.c @@ -313,7 +313,7 @@ flush_repeats (type) OB_PUTC ('_'); } -static int numeric_outputed_need_bar = 0; +static int numeric_outputed_need_bar; static void build_overload_identifier (); static void @@ -920,6 +920,7 @@ build_decl_overload (dname, parms, for_method) { ALLOCATE_TYPEVEC (parms); nofold = 0; + numeric_outputed_need_bar = 0; if (for_method) { build_overload_name (TREE_VALUE (parms), 0, 0); |