This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
The demangling_new bug in libiberty/cp-demangle.c
- To: gcc-bugs at gcc dot gnu dot org
- Subject: The demangling_new bug in libiberty/cp-demangle.c
- From: "H . J . Lu" <hjl at lucon dot org>
- Date: Tue, 24 Apr 2001 14:07:53 -0700
# grep demangling_new libiberty/cp-demangle.c
static demangling_t demangling_new
demangling_new (name, style)
demangling_t dm = demangling_new (name, style);
demangling_t dm = demangling_new (type_name);
^^^^^^^^^^^
dm = demangling_new (name, DMGL_GNU_V3);
As you can see, demangling_new is called with only one arg.
H.J.