OSDN Git Service

* cpp-ifparen.c, cpp-missingop.c, cpp-missingparen.c,
authorneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 6 Apr 2000 12:51:33 +0000 (12:51 +0000)
committerneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 6 Apr 2000 12:51:33 +0000 (12:51 +0000)
cpp-shift.c, cpp-shortcircuit.c, cpp-unary.c:  Add FSF
copyright.

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

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/cpp-ifparen.c
gcc/testsuite/gcc.dg/cpp-missingop.c
gcc/testsuite/gcc.dg/cpp-missingparen.c
gcc/testsuite/gcc.dg/cpp-shift.c
gcc/testsuite/gcc.dg/cpp-shortcircuit.c
gcc/testsuite/gcc.dg/cpp-unary.c

index 1837a22..53f5100 100644 (file)
@@ -1,3 +1,9 @@
+2000-04-06  Neil Booth  <NeilB@earthling.net>
+
+       * cpp-ifparen.c, cpp-missingop.c, cpp-missingparen.c,
+       cpp-shift.c, cpp-shortcircuit.c, cpp-unary.c:  Add FSF
+       copyright.        
+
 2000-04-04  Geoff Keating  <geoffk@cygnus.com>
 
        * gcc.dg/cast-qual-1.c: Revert last change.
index 98da88b..af7a10c 100644 (file)
@@ -1,3 +1,5 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc.  */
+
 /* { dg-do preprocess } */
 
 /* These now use "!=" rather than "<" to increase chance of failure.  */
index 286896c..66270da 100644 (file)
@@ -1,3 +1,5 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc.  */
+
 /* { dg-do preprocess } */
 
 /* Various illegal expressions with missing components.  */
index bd2b53b..b57b5d1 100644 (file)
@@ -1,27 +1,21 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc.  */
+
 /* Test various combinations of missing parentheses give the correct
    missing parenthesis message.  */
 
 /* { dg-do preprocess } */
 
-#if (1
+#if (1          /* { dg-error "missing '\\)'" "missing ')' no. 1" } */
 #endif
 
-#if 2 * (3 + 4
+#if 2 * (3 + 4 /* { dg-error "missing '\\)'" "missing ')' no. 2" } */
 #endif
 
-#if (2))
+#if (2))       /* { dg-error "missing '\\('" "missing '(' no. 1" } */
 #endif
 
-#if )
+#if )          /* { dg-error "missing '\\('" "missing '(' no. 2" } */
 #endif
 
-#if 4)
+#if 4)         /* { dg-error "missing '\\('" "missing '(' no. 3" } */
 #endif
-
-/* { dg-error "missing '\\)'" "missing ')' no. 1"  { target *-*-* } 6 } */
-/* { dg-error "missing '\\)'" "missing ')' no. 2"  { target *-*-* } 9 } */
-/* { dg-error "missing '\\('" "missing '(' no. 1"  { target *-*-* } 12 } */
-/* { dg-error "missing '\\('" "missing '(' no. 2"  { target *-*-* } 15 } */
-/* { dg-error "missing '\\('" "missing '(' no. 3"  { target *-*-* } 18 } */
-
-
index cbcb37f..a55420a 100644 (file)
@@ -1,3 +1,5 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc.  */
+
 /* { dg-do preprocess } */
 
 /* Test shift operators.  */
index d0c4647..1607669 100644 (file)
@@ -1,3 +1,5 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc.  */
+
 /* { dg-do preprocess } */
 
 /* Test that all operators correctly short circuit.  */
index 03758aa..f5442af 100644 (file)
@@ -1,3 +1,5 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc.  */
+
 /* { dg-do preprocess } */
 
 /* Test the various unary operators.  */