981001-4.c: Remove use of GCC extension that triggers a compiler bug.

* compile/981001-4.c: Remove use of GCC extension that triggers a
        compiler bug.

From-SVN: r23081
This commit is contained in:
Andreas Schwab 1998-10-14 09:34:15 +00:00 committed by Jeff Law
parent 52d4e5b7ee
commit 5789e7cbb6
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
1998-10-14 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* compile/981001-4.c: Remove use of GCC extension that triggers a
compiler bug.
1998-10-13 Alexandre Oliva <oliva@dcc.unicamp.br>
* lib/old-dejagnu.exp (old-dejagnu): support `Additional sources:'

View File

@ -1,7 +1,7 @@
#define P(a,b) P1(a,b)
#define P1(a,b) a##b
#define ONCE(x, y) (x ?: x = y())
#define ONCE(x, y) (x ?: (x = y()))
#define PREFIX
extern int P(PREFIX, init) (void);