[Bug c/47650] New: wrong output of print_generic_decl() called from a plugin

joe at mcknight dot de gcc-bugzilla@gcc.gnu.org
Tue Feb 8 19:09:00 GMT 2011


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47650

           Summary: wrong output of print_generic_decl() called from a
                    plugin
           Product: gcc
           Version: 4.5.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: joe@mcknight.de


While testing how to parse C and C++ code for function prototypes from a plugin

(see http://gcc.gnu.org/ml/gcc/2010-12/msg00179.html)

I noticed that print_generic_decl() seems to output wrong data.

Consider the following function definition:

------------------
void barfunc (int foo, int abc, ... ) {

}
------------------

This outputs "static void barfunc (int);" but the function is neither
static nor does it expect only one int parameter...

Am I doing something wrong? I am calling "print_generic_decl(file,
decl, 0);" from the PLUGIN_PRE_GENERICIZE hook and this is gcc version
4.5.1 (GCC) on Solaris.



More information about the Gcc-bugs mailing list