openacc.h (__GOACC_NOTHROW): Fix noexcept syntax.
authorJason Merrill <jason@redhat.com>
Sat, 9 May 2015 04:50:35 +0000 (00:50 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Sat, 9 May 2015 04:50:35 +0000 (00:50 -0400)
* openacc.h (__GOACC_NOTHROW): Fix noexcept syntax.

* testsuite/libgomp.oacc-c-c++-common/reduction-4.c (main): Use
_Complex.

From-SVN: r222966

libgomp/ChangeLog
libgomp/openacc.h
libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-4.c

index 982e2d3f03355be5dad464e17b93f50055ffb053..869adbd5c657276c6484b963cb943bf61bef2fdf 100644 (file)
@@ -1,3 +1,10 @@
+2015-05-08  Jason Merrill  <jason@redhat.com>
+
+       * testsuite/libgomp.oacc-c-c++-common/reduction-4.c (main): Use
+       _Complex.
+
+       * openacc.h (__GOACC_NOTHROW): Fix noexcept syntax.
+
 2015-05-06  Julian Brown  <julian@codesourcery.com>
 
        * oacc-init.c (acc_device_lock): Add explanatory comment.
index 334324114f1eacc14de06dad6302408865fd9e45..44a1526597ddc82e8849f9dcef8e0a6e65178d03 100644 (file)
@@ -39,7 +39,7 @@ extern "C" {
 #endif
 
 #if __cplusplus >= 201103
-# define __GOACC_NOTHROW noexcept ()
+# define __GOACC_NOTHROW noexcept
 #elif __cplusplus
 # define __GOACC_NOTHROW throw ()
 #else /* Not C++ */
index d7da19e829b47c501353c4ca237da6f5987406dd..eab24281514a3c25ffd9a3fc2831250c4695543d 100644 (file)
@@ -14,7 +14,7 @@ main(void)
 {
   const int n = 1000;
   int i;
-  double complex vresult, result, array[n];
+  double _Complex vresult, result, array[n];
   bool lvresult, lresult;
 
   for (i = 0; i < n; i++)