diff options
| -rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/testsuite/gcc.dg/loop-2.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 38966bb..5008e7e 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2003-03-26 Alan Modra <amodra@bigpond.net.au> + + * gcc.dg/loop-2.c: Replace "inline" with "__inline__". + 2003-03-26 Eric Botcazou <ebotcazou@libertysurf.fr> * gcc.dg/ultrasp6.c: New test. diff --git a/gcc/testsuite/gcc.dg/loop-2.c b/gcc/testsuite/gcc.dg/loop-2.c index e939f32..8acc65d 100644 --- a/gcc/testsuite/gcc.dg/loop-2.c +++ b/gcc/testsuite/gcc.dg/loop-2.c @@ -3,7 +3,7 @@ 0 iterations of the loop rather than the correct 1. */ /* { dg-do run } */ -inline int tag() { return 0; } +__inline__ int tag() { return 0; } void f (); |
