Rename PRAGMA_OMP_DECLARE_REDUCTION to PRAGMA_OMP_DECLARE
authorThomas Schwinge <thomas@codesourcery.com>
Wed, 29 Jun 2016 09:07:52 +0000 (11:07 +0200)
committerThomas Schwinge <tschwinge@gcc.gnu.org>
Wed, 29 Jun 2016 09:07:52 +0000 (11:07 +0200)
gcc/c-family/
* c-pragma.h (enum pragma_kind): Rename
PRAGMA_OMP_DECLARE_REDUCTION to PRAGMA_OMP_DECLARE.  Adjust all
users.

From-SVN: r237842

gcc/c-family/ChangeLog
gcc/c-family/c-pragma.c
gcc/c-family/c-pragma.h
gcc/c/c-parser.c
gcc/cp/parser.c

index d5b839594ce339dcf203414ac49f478ec3fb0c42..679cb6bda826fab4b82f7731d7f38d696647bba5 100644 (file)
@@ -1,3 +1,9 @@
+2016-06-29  Thomas Schwinge  <thomas@codesourcery.com>
+
+       * c-pragma.h (enum pragma_kind): Rename
+       PRAGMA_OMP_DECLARE_REDUCTION to PRAGMA_OMP_DECLARE.  Adjust all
+       users.
+
 2016-06-29  Richard Biener  <rguenther@suse.de>
 
        PR middle-end/71002
index c73aa8221049b85949b0b62e88f58120e43aa39d..277bc56031891f740c17195af3521d48d70e22ab 100644 (file)
@@ -1286,7 +1286,7 @@ static const struct omp_pragma_def omp_pragmas[] = {
   { "threadprivate", PRAGMA_OMP_THREADPRIVATE }
 };
 static const struct omp_pragma_def omp_pragmas_simd[] = {
-  { "declare", PRAGMA_OMP_DECLARE_REDUCTION },
+  { "declare", PRAGMA_OMP_DECLARE },
   { "distribute", PRAGMA_OMP_DISTRIBUTE },
   { "for", PRAGMA_OMP_FOR },
   { "parallel", PRAGMA_OMP_PARALLEL },
index 65f10db6e6f8ec24214d897053c190a422dc0629..6d9cb086ea3217b2ac21ad31d61bb415e74ef638 100644 (file)
@@ -46,7 +46,7 @@ enum pragma_kind {
   PRAGMA_OMP_CANCEL,
   PRAGMA_OMP_CANCELLATION_POINT,
   PRAGMA_OMP_CRITICAL,
-  PRAGMA_OMP_DECLARE_REDUCTION,
+  PRAGMA_OMP_DECLARE,
   PRAGMA_OMP_DISTRIBUTE,
   PRAGMA_OMP_END_DECLARE_TARGET,
   PRAGMA_OMP_FLUSH,
index 7f491f1dc060857e22ff489621e97d0508fa4e80..1d2dac796ad13f5c38821623a5fdf3c1912686ff 100644 (file)
@@ -10215,7 +10215,7 @@ c_parser_pragma (c_parser *parser, enum pragma_context context, bool *if_p)
       c_parser_skip_until_found (parser, CPP_PRAGMA_EOL, NULL);
       return false;
 
-    case PRAGMA_OMP_DECLARE_REDUCTION:
+    case PRAGMA_OMP_DECLARE:
       c_parser_omp_declare (parser, context);
       return false;
 
@@ -16381,7 +16381,7 @@ c_parser_omp_declare_simd (c_parser *parser, enum pragma_context context)
   while (c_parser_next_token_is (parser, CPP_PRAGMA))
     {
       if (c_parser_peek_token (parser)->pragma_kind
-         != PRAGMA_OMP_DECLARE_REDUCTION
+         != PRAGMA_OMP_DECLARE
          || c_parser_peek_2nd_token (parser)->type != CPP_NAME
          || strcmp (IDENTIFIER_POINTER
                                (c_parser_peek_2nd_token (parser)->value),
index d1f06fdb86107f11f531d11d6f5bdb02737bf8f9..739fca08f9f3d33387720b306aed875a67689019 100644 (file)
@@ -37203,7 +37203,7 @@ cp_parser_pragma (cp_parser *parser, enum pragma_context context, bool *if_p)
   parser->lexer->in_pragma = true;
 
   id = cp_parser_pragma_kind (pragma_tok);
-  if (id != PRAGMA_OMP_DECLARE_REDUCTION && id != PRAGMA_OACC_ROUTINE)
+  if (id != PRAGMA_OMP_DECLARE && id != PRAGMA_OACC_ROUTINE)
     cp_ensure_no_omp_declare_simd (parser);
   switch (id)
     {
@@ -37310,7 +37310,7 @@ cp_parser_pragma (cp_parser *parser, enum pragma_context context, bool *if_p)
       cp_parser_omp_threadprivate (parser, pragma_tok);
       return false;
 
-    case PRAGMA_OMP_DECLARE_REDUCTION:
+    case PRAGMA_OMP_DECLARE:
       cp_parser_omp_declare (parser, pragma_tok, context);
       return false;