diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-05 17:15:33 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-05 17:15:33 +0000 |
commit | 966e3349ff5de663631b5c747ca29dbdad709337 (patch) | |
tree | 3ae0aeabb60e689e7a2cf37cdb0110e08cba20ae /gcc/cp | |
parent | baad6cc15a92dadb11cbf4e7a7c6a160182379c5 (diff) | |
download | gcc-966e3349ff5de663631b5c747ca29dbdad709337.tar.gz |
* method.c (build_mangled_name) [old abi]: Protect flush_repeats()
from error_mark_node.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39460 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/method.c | 10 |
2 files changed, 15 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 04d64a0c824..72bc2f07435 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2001-02-05 Alexandre Oliva <aoliva@redhat.com> + + * method.c (build_mangled_name) [old abi]: Protect flush_repeats() + from error_mark_node. + 2001-02-05 Nathan Sidwell <nathan@codesourcery.com> Fix specification and implementation bugs in V3 ABI diff --git a/gcc/cp/method.c b/gcc/cp/method.c index 51e0c5c3cb9..30ede1b600a 100644 --- a/gcc/cp/method.c +++ b/gcc/cp/method.c @@ -1213,6 +1213,16 @@ build_mangled_name (parmtypes, begin, end) nrepeats = 0; } + /* Insead of protecting flush_repeats() against + error_mark_node, we can do it here. Since we wouldn't + add anything for an ERROR_MARK anyway, it's ok to skip + the mangling for this type. */ + if (old_style_repeats && parmtype == error_mark_node) + { + last_type = NULL_TREE; + continue; + } + last_type = parmtype; /* Note that for bug-compatibility with 2.7.2, we can't build up |