* gcc.dg/cpp/syshdr.h: New file.
authorneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 6 May 2001 09:48:28 +0000 (09:48 +0000)
committerneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 6 May 2001 09:48:28 +0000 (09:48 +0000)
* gcc.dg/cpp/sysmac1.c: Update.
* gcc.dg/cpp/sysmac2.c: Update.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41873 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/cpp/syshdr.h [new file with mode: 0644]
gcc/testsuite/gcc.dg/cpp/sysmac1.c
gcc/testsuite/gcc.dg/cpp/sysmac2.c

index ff86ee0..8199189 100644 (file)
@@ -1,3 +1,9 @@
+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.
diff --git a/gcc/testsuite/gcc.dg/cpp/syshdr.h b/gcc/testsuite/gcc.dg/cpp/syshdr.h
new file mode 100644 (file)
index 0000000..3f546aa
--- /dev/null
@@ -0,0 +1,10 @@
+/* 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
index cfc2b3d..fa741a4 100644 (file)
@@ -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" } */
index 0f32654..6d493a9 100644 (file)
@@ -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 ()
 {