Re: [Ctool-develop] testing the gcc test suite
Brought to you by:
flisakow
From: Stefan S. <se...@sy...> - 2003-09-04 00:25:31
|
hi there, I'm running into a series of other problems, which seem at least partly to be gcc-specific: I see lines of the form: typedef __builtin_va_list __gnuc_va_list; without any include directive including a file defining '__builtin_va_list'. (of course not ! It's 'builtin'.) How can this be supported ? Should the ctool code set up some internal table of predefined 'builtin' types / identifiers ? Further, I'm seeing lots of declarations of the form: extern int _IO_vfscanf (_IO_FILE * __restrict, const char * __restrict, _IO_va_list, int *__restrict) __THROW; i.e. with the keyword '__restrict'. This keyword isn't recognized by the ctool parser either, so it reports an error about 'duplicate parameter names'. (In contrast to the first problem, the '__restrict' keyword doesn't seem to be gcc-specific) Any suggestion how to fix this ? Thanks, Stefan |