re PR c/14465 (insn-output.c:790: error: `asm_out_file' undeclared)

PR c/14465
	* gcc.dg/decl-6.c: New test.

From-SVN: r79038
This commit is contained in:
Eric Botcazou 2004-03-07 01:33:46 +01:00 committed by Eric Botcazou
parent 679d316741
commit 75a65ed93c
2 changed files with 20 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-03-06 Eric Botcazou <ebotcazou@libertysurf.fr>
PR c/14465
* gcc.dg/decl-6.c: New test.
2004-03-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcc.dg/torture/builtin-explog-1.c: Add comments for each test.

View File

@ -0,0 +1,15 @@
/* { dg-do compile } */
extern int var;
int foo1(void)
{
extern int var;
var += 1;
}
int foo2(void)
{
var += 1;
}