diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2017-02-28 09:41:55 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2017-02-28 09:41:55 +0100 |
commit | fd2b8c8bd3839a847cc40adc78561ab73448e4cb (patch) | |
tree | 113538cab4464a418caca708a7623867d8e40f30 /gcc/omp-expand.c | |
parent | 51e8bfb96746c55470cdb096703452653e983977 (diff) | |
download | gcc-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/omp-expand.c')
-rw-r--r-- | gcc/omp-expand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/omp-expand.c b/gcc/omp-expand.c index 55e54e4..ea951d6 100644 --- a/gcc/omp-expand.c +++ b/gcc/omp-expand.c @@ -8134,7 +8134,7 @@ const pass_data pass_data_expand_omp = { GIMPLE_PASS, /* type */ "ompexp", /* name */ - OPTGROUP_OPENMP, /* optinfo_flags */ + OPTGROUP_OMP, /* optinfo_flags */ TV_NONE, /* tv_id */ PROP_gimple_any, /* properties_required */ PROP_gimple_eomp, /* properties_provided */ @@ -8181,7 +8181,7 @@ const pass_data pass_data_expand_omp_ssa = { GIMPLE_PASS, /* type */ "ompexpssa", /* name */ - OPTGROUP_OPENMP, /* optinfo_flags */ + OPTGROUP_OMP, /* optinfo_flags */ TV_NONE, /* tv_id */ PROP_cfg | PROP_ssa, /* properties_required */ PROP_gimple_eomp, /* properties_provided */ |