20100423-2_0.c: Include <stdio.h>.

* gcc.dg/lto/20100423-2_0.c: Include <stdio.h>.
	(size_t, stderr): Remove.
	(read_error): Replaced __builtin_fprintf by fprintf.

From-SVN: r159146
This commit is contained in:
Rainer Orth 2010-05-07 09:11:31 +00:00 committed by Rainer Orth
parent d42ba3b80a
commit 9009be85ea
2 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2010-05-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* gcc.dg/lto/20100423-2_0.c: Include <stdio.h>.
(size_t, stderr): Remove.
(read_error): Replaced __builtin_fprintf by fprintf.
2010-05-07 Shujing Zhao <pearly.zhao@oracle.com>
* gcc.dg/ordered-comparison-1.c: New test.

View file

@ -1,8 +1,8 @@
/* { dg-lto-do link } */
/* { dg-lto-options {{-O2 -flto} {-O2 -fwhopr} {-O3 -flto} {-O3 -fwhopr}} } */
typedef unsigned int size_t;
extern struct _IO_FILE *stderr;
#include <stdio.h>
typedef unsigned char uch;
extern uch inbuf[];
unsigned insize;
@ -20,6 +20,6 @@ int fill_inbuf(int eof_ok)
}
void read_error(void)
{
__builtin_fprintf(stderr, "\n%s: ", progname);
fprintf(stderr, "\n%s: ", progname);
}