From: Zack Weinberg Date: Sun, 11 Jan 2004 00:47:20 +0000 (+0000) Subject: 20021123-2.c: Delete; dup of 20021120-1.c. X-Git-Tag: releases/gcc-3.4.0~1126 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9c10179d0a63ba0fa07e7ac5366b152944d7082b;p=thirdparty%2Fgcc.git 20021123-2.c: Delete; dup of 20021120-1.c. * gcc.c-torture/compile/20021123-2.c: Delete; dup of 20021120-1.c. * gcc.c-torture/compile/20021123-3.c: Delete; dup of 20021120-2.c. From-SVN: r75663 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 9b1672b2545f..ac1ae078b5c1 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2004-01-10 Zack Weinberg + + * gcc.c-torture/compile/20021123-2.c: Delete; dup of 20021120-1.c. + * gcc.c-torture/compile/20021123-3.c: Delete; dup of 20021120-2.c. + 2004-01-10 Eric Botcazou * gcc.dg/pragma-re-1.c: Use right pointer type. diff --git a/gcc/testsuite/gcc.c-torture/compile/20021123-2.c b/gcc/testsuite/gcc.c-torture/compile/20021123-2.c deleted file mode 100644 index 423f8ec1964b..000000000000 --- a/gcc/testsuite/gcc.c-torture/compile/20021123-2.c +++ /dev/null @@ -1,9 +0,0 @@ -/* PR c/8518 */ -/* Contributed by Volker Reichelt. */ - -/* Verify that GCC doesn't get confused by the - redefinition of an extern inline function. */ - -extern int inline foo () { return 0; } -extern int inline bar () { return 0; } -static int inline bar () { return foo(); } diff --git a/gcc/testsuite/gcc.c-torture/compile/20021123-3.c b/gcc/testsuite/gcc.c-torture/compile/20021123-3.c deleted file mode 100644 index 51f0e257dfdd..000000000000 --- a/gcc/testsuite/gcc.c-torture/compile/20021123-3.c +++ /dev/null @@ -1,9 +0,0 @@ -/* PR c/8518 */ -/* Contributed by Volker Reichelt. */ - -/* Verify that GCC doesn't get confused by the - redefinition of an extern inline function. */ - -extern int inline foo () { return 0; } -extern int inline bar () { return 0; } -static int bar () { return foo(); }