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-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c10179d0a63ba0fa07e7ac5366b152944d7082b;p=platform%2Fupstream%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 9b1672b..ac1ae07 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 423f8ec..0000000 --- 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 51f0e25..0000000 --- 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(); }