[GCC-XML]Function args
Brad King
brad.king at kitware.com
Tue Sep 10 20:41:19 EDT 2002
> void Read_Time_Int (long unsigned int *upper_rtc, long unsigned int
> *lower_rtc);
[snip]
> This is similar to my last posting but still...
> We seemed to have lost the Argument names for the function...
The argument names are not part of the function type:
void (*)(int x)
is the same as
void (*)(int y)
GCC-XML dumps only one node for each unique type. Therefore, the argument
names cannot be included, or it would conflict if more than one had the
same type.
-Brad
More information about the gccxml
mailing list