Commit 6d1d1db0 by Eric Botcazou Committed by Eric Botcazou

20021120-1.c: New test.

	* gcc.c-torture/compile/20021120-1.c: New test.
	* gcc.c-torture/compile/20021120-2.c: New test.

From-SVN: r59303
parent 02a362d9
2002-11-20 Eric Botcazou <ebotcazou@libertysurf.fr>
* gcc.c-torture/compile/20021120-1.c: New test.
* gcc.c-torture/compile/20021120-2.c: New test.
2002-11-20 Richard Sandiford <rsandifo@redhat.com>
* gcc.dg/bitfld-5.c: New test.
......
/* 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(); }
/* 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(); }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment