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/dumpfile.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/dumpfile.c')
-rw-r--r-- | gcc/dumpfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dumpfile.c b/gcc/dumpfile.c index 2c5dce2..6b9a47c 100644 --- a/gcc/dumpfile.c +++ b/gcc/dumpfile.c @@ -140,7 +140,7 @@ static const struct dump_option_value_info optgroup_options[] = {"ipa", OPTGROUP_IPA}, {"loop", OPTGROUP_LOOP}, {"inline", OPTGROUP_INLINE}, - {"openmp", OPTGROUP_OPENMP}, + {"omp", OPTGROUP_OMP}, {"vec", OPTGROUP_VEC}, {"optall", OPTGROUP_ALL}, {NULL, 0} |