a.35.4.c: Fix implicit declarations.
authorMarek Polacek <polacek@redhat.com>
Fri, 3 Oct 2014 11:18:06 +0000 (11:18 +0000)
committerMarek Polacek <mpolacek@gcc.gnu.org>
Fri, 3 Oct 2014 11:18:06 +0000 (11:18 +0000)
* gcc.dg/gomp/appendix-a/a.35.4.c: Fix implicit declarations.
* gcc.dg/gomp/appendix-a/a.35.5.c: Likewise.
* gcc.dg/gomp/appendix-a/a.35.6.c: Likewise.
* gcc.dg/gomp/asm-1.c: Likewise.
* gcc.dg/gomp/for-1.c: Likewise.
* gcc.dg/gomp/empty.c: Fix defaulting to int.
* gcc.dg/gomp/sharing-3.c: Likewise.
* gcc.dg/gomp/udr-3.c: Use -std=gnu89.

From-SVN: r215846

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/gomp/appendix-a/a.35.4.c
gcc/testsuite/gcc.dg/gomp/appendix-a/a.35.5.c
gcc/testsuite/gcc.dg/gomp/appendix-a/a.35.6.c
gcc/testsuite/gcc.dg/gomp/asm-1.c
gcc/testsuite/gcc.dg/gomp/empty.c
gcc/testsuite/gcc.dg/gomp/for-1.c
gcc/testsuite/gcc.dg/gomp/sharing-3.c
gcc/testsuite/gcc.dg/gomp/udr-3.c

index f78fb8c60cca6882ec803f25a262cfc950cbad2e..7f4de02c25c452ba4cb945fc78e7b2a4116e00b7 100644 (file)
@@ -1,3 +1,14 @@
+2014-10-03  Marek Polacek  <polacek@redhat.com>
+
+       * gcc.dg/gomp/appendix-a/a.35.4.c: Fix implicit declarations.
+       * gcc.dg/gomp/appendix-a/a.35.5.c: Likewise.
+       * gcc.dg/gomp/appendix-a/a.35.6.c: Likewise.
+       * gcc.dg/gomp/asm-1.c: Likewise.
+       * gcc.dg/gomp/for-1.c: Likewise.
+       * gcc.dg/gomp/empty.c: Fix defaulting to int.
+       * gcc.dg/gomp/sharing-3.c: Likewise.
+       * gcc.dg/gomp/udr-3.c: Use -std=gnu89.
+
 2014-10-03  Marek Polacek  <polacek@redhat.com>
 
        * gcc.dg/torture/pr24626-2.c: Add function declarations.  Fix
index 5bb6b80b396bd47cf2b0a4b3fe209d34dc5f1a55..8562fca9c6d823f20860ad4751e691259f3fc624 100644 (file)
@@ -1,5 +1,7 @@
 /* { dg-do compile } */
 
+void work (int, int);
+
 void
 wrong4 (int n)
 {
index 7b4aee1c06b3d7be9e40fa5b5e8ddc483ab5de7a..90d2966cbca64e0fba9876ab309b226d40fa4dcc 100644 (file)
@@ -1,5 +1,7 @@
 /* { dg-do compile } */
 
+void work (int, int);
+
 void
 wrong5 (int n)
 {
index d18188b17523efefe8782e4cb86d8b007483e62b..6260be73068dcba9f1bf9ff537d181c6efae739b 100644 (file)
@@ -1,5 +1,7 @@
 /* { dg-do compile } */
 
+void work (int, int);
+
 void
 wrong6 (int n)
 {
index ced31f3b113072dd30f966f54ff240e6e1e3c3b4..2b428c0cc51a36fb70b1575425e9cd156952d3a5 100644 (file)
@@ -2,6 +2,8 @@
 /* { dg-do compile } */
 /* { dg-options "-O2 -fopenmp" } */
 
+extern int omp_get_thread_num (void);
+
 void
 foo (void)
 {
index 6a21c0460eca55d72e33eae8c1b720e16f01b07f..c7aba8ffbae32d1387f2f4eced00cb5e90a9c475 100644 (file)
@@ -1,6 +1,7 @@
 /* { dg-do compile } */
 /* { dg-options "-O -fopenmp -fdump-tree-ompexp" } */
 
+int
 main()
 {
 #pragma omp parallel
index 384293e82756d5db049ce30ddbb02d7679294af0..80e0d0be844258cf41ee8ea5a4abc069fc216e1f 100644 (file)
@@ -1,6 +1,8 @@
 /* { dg-do compile } */
 /* { dg-options "-fopenmp -fshow-column" } */
 
+void baz (int);
+
 void foo (int j, int k)
 {
   int i;
index 36f72e3abb94cc7be324f2de863b5930b847caea..4a3019848cf2b2d88864420a031efb1669d8aea1 100644 (file)
@@ -3,6 +3,7 @@
 #define N       50
 #define CHUNKSIZE   5
 
+int
 main ()
 {
   int i, chunk;
index bdfcce1d0b65eb526a0eb1b5ddb804a5d7de24b3..96450cd50e2ee58466a82409ff342e3828bd24d6 100644 (file)
@@ -1,5 +1,5 @@
 /* { dg-do compile } */
-/* { dg-options "-fopenmp" } */
+/* { dg-options "-fopenmp -std=gnu89" } */
 
 struct S { int s; };
 struct T { int t; };