From: Alan Modra Date: Wed, 26 Mar 2003 12:48:28 +0000 (+0000) Subject: * gcc.dg/loop-2.c: Replace "inline" with "__inline__". X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f729e5592fe97fd4497578845d04a4025f180d66;p=gcc.git * gcc.dg/loop-2.c: Replace "inline" with "__inline__". From-SVN: r64893 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 38966bb9656..5008e7e7651 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2003-03-26 Alan Modra + + * gcc.dg/loop-2.c: Replace "inline" with "__inline__". + 2003-03-26 Eric Botcazou * 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 e939f327bac..8acc65d116f 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 ();