From: Zack Weinberg Date: Thu, 27 Jan 2000 21:42:03 +0000 (+0000) Subject: Use __inline not inline since test is compiled with -ansi X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=35ac3890ec195a629b2562bcf43153eb4f75d2f9;p=gcc.git Use __inline not inline since test is compiled with -ansi From-SVN: r31652 --- diff --git a/gcc/testsuite/gcc.dg/20000111-1.c b/gcc/testsuite/gcc.dg/20000111-1.c index 2015747b536..a042656d564 100644 --- a/gcc/testsuite/gcc.dg/20000111-1.c +++ b/gcc/testsuite/gcc.dg/20000111-1.c @@ -4,7 +4,7 @@ /* { dg-do compile } */ -inline int +__inline int foo (int **q) { return *q && **q; }