Commit 7f75752b by Neil Booth Committed by Neil Booth

syshdr.h: New file.

	* gcc.dg/cpp/syshdr.h: New file.
	* gcc.dg/cpp/sysmac1.c: Update.
	* gcc.dg/cpp/sysmac2.c: Update.

From-SVN: r41873
parent 3364a739
2001-05-06 Neil Booth <neil@daikokuya.demon.co.uk>
* gcc.dg/cpp/syshdr.h: New file.
* gcc.dg/cpp/sysmac1.c: Update.
* gcc.dg/cpp/sysmac2.c: Update.
2001-05-05 Neil Booth <neil@daikokuya.demon.co.uk>
* gcc.dg/cpp/sysmac1.c,sysmac2.c: Return to original file.
......
/* Indented to avoid "suggest hiding ..." warnings. */
#pragma GCC system_header
#define sys_uint 1U
#define sys_str(x) x
#define sys_foo(x, y...) bar (x, ##y)
#define sys_uint 1U
#define sys_fl 1.0f
#define sys_ld 1.0L
......@@ -8,18 +8,12 @@
/* Source: Neil Booth, 15 Jan 2001. */
#include "syshdr.h"
#define uint 1U
#define str(x) x
#define foo(x, y...) bar(x, ##y) /* { dg-warning "named variadic macros" } */
# 16 "system.h" 1 3 /* { dg-warning "followed by integer" } */
#define sys_uint 1U
#define sys_str(x) x
#define sys_foo(x, y...) bar (x, ##y)
# 22 "sysmac1.c" 2
#if uint /* { dg-warning "traditional C rejects" } */
#endif
#if sys_uint /* { dg-bogus "traditional C rejects" } */
......
......@@ -8,18 +8,12 @@
/* Source: Neil Booth, 15 Jan 2001. */
#include "syshdr.h"
#define uint 1U
#define fl 1.0f
#define ld 1.0L
# 16 "system.h" 1 3 /* { dg-warning "followed by integer" } */
#define sys_uint 1U
#define sys_fl 1.0f
#define sys_ld 1.0L
# 22 "sysmac2.c" 2
int
main ()
{
......
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