cpp-ifparen.c, [...]: Add FSF copyright.
authorNeil Booth <neilb@earthling.net>
Thu, 6 Apr 2000 12:51:33 +0000 (12:51 +0000)
committerNeil Booth <neil@gcc.gnu.org>
Thu, 6 Apr 2000 12:51:33 +0000 (12:51 +0000)
* cpp-ifparen.c, cpp-missingop.c, cpp-missingparen.c,
cpp-shift.c, cpp-shortcircuit.c, cpp-unary.c:  Add FSF
copyright.

From-SVN: r32968

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 1837a22a6b50f8de93fefe8b131e4e112e5cdc34..53f510087a8ce12f02a86a096e849360754eb0b9 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 98da88bfdc36a78488ccd1ed1c00741afe287713..af7a10cbc112c9e54fe4a4f8860a557b127f875b 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 286896c74174c11df1e4e23e410b31f51205292a..66270dab65d9daa0b2b1e57de8a9b64ce8a61e87 100644 (file)
@@ -1,3 +1,5 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc.  */
+
 /* { dg-do preprocess } */
 
 /* Various illegal expressions with missing components.  */
index bd2b53bc0372d9311559d223e37f72fdf221d148..b57b5d189ab2837a4da77a9bd705abeaf53dd70f 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 cbcb37fa090e068dbc28fc8b56d054f4076916ee..a55420a79bf8c379aae33b6876cb1672d5a84dc3 100644 (file)
@@ -1,3 +1,5 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc.  */
+
 /* { dg-do preprocess } */
 
 /* Test shift operators.  */
index d0c4647e7df6c64c03e08cea66c1b1b583b831d9..1607669f0b889c8b0375c85fa74fe94a0376f2be 100644 (file)
@@ -1,3 +1,5 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc.  */
+
 /* { dg-do preprocess } */
 
 /* Test that all operators correctly short circuit.  */
index 03758aacf30ad21465afd135347990b885fcb081..f5442afe88c52f0359863bca879951281f6eb5a5 100644 (file)
@@ -1,3 +1,5 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc.  */
+
 /* { dg-do preprocess } */
 
 /* Test the various unary operators.  */