This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
misc quirks in recent MAIN branch
- To: gcc-bugs at gcc dot gnu dot org
- Subject: misc quirks in recent MAIN branch
- From: Clive Nicolson <srwmcln at baby dot bedroom dot gen dot nz>
- Date: Sun, 22 Aug 1999 22:09:41 +1300 NZDT
- CC: srwmcln at baby dot bedroom dot gen dot nz
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