aboutsummaryrefslogtreecommitdiff
path: root/gcc/dumpfile.h
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2017-02-28 09:41:55 +0100
committerThomas Schwinge <tschwinge@gcc.gnu.org>2017-02-28 09:41:55 +0100
commitfd2b8c8bd3839a847cc40adc78561ab73448e4cb (patch)
tree113538cab4464a418caca708a7623867d8e40f30 /gcc/dumpfile.h
parent51e8bfb96746c55470cdb096703452653e983977 (diff)
downloadgcc-fd2b8c8bd3839a847cc40adc78561ab73448e4cb.zip
gcc-fd2b8c8bd3839a847cc40adc78561ab73448e4cb.tar.gz
gcc-fd2b8c8bd3839a847cc40adc78561ab73448e4cb.tar.bz2
Rename the "openmp" group of optimizations to "omp"
gcc/ * dumpfile.h (OPTGROUP_OPENMP): Rename to OPTGROUP_OMP. Adjust all users. * dumpfile.c (optgroup_options): Instead of "openmp", associate OPTGROUP_OMP with "omp". From-SVN: r245768
Diffstat (limited to 'gcc/dumpfile.h')
-rw-r--r--gcc/dumpfile.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/dumpfile.h b/gcc/dumpfile.h
index 7c8f7a2..3886f98 100644
--- a/gcc/dumpfile.h
+++ b/gcc/dumpfile.h
@@ -99,7 +99,8 @@ enum tree_dump_index
#define OPTGROUP_LOOP (1 << 2) /* Loop optimization passes */
#define OPTGROUP_INLINE (1 << 3) /* Inlining passes */
#define OPTGROUP_VEC (1 << 4) /* Vectorization passes */
-#define OPTGROUP_OPENMP (1 << 5) /* OpenMP specific transformations */
+#define OPTGROUP_OMP (1 << 5) /* OMP (Offloading and Multi
+ Processing) transformations */
#define OPTGROUP_OTHER (1 << 6) /* All other passes */
#define OPTGROUP_ALL (OPTGROUP_IPA | OPTGROUP_LOOP | OPTGROUP_INLINE \
| OPTGROUP_VEC | OPTGROUP_OTHER)