This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

misc quirks in recent MAIN branch


I've encounted the following problem in the MAIN branch.

tree.h has the 2 lines:

extern int current_function_calls_setjmp;

extern int current_function_calls_longjmp;

While in function.h a recent change has created:

#define current_function_calls_setjmp (current_function->calls_setjmp)
#define current_function_calls_longjmp (current_function->calls_longjmp)

These are of course incompatible, the lines in tree.h need to be deleted.

Also, in vax.md a couple of delarations of "char *pattern;" need to be
changed to "const char *pattern;" to remove a compile warning.

Clive


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]