summaryrefslogtreecommitdiff
path: root/gcc/dumpfile.h
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2017-02-28 09:42:06 +0100
committerThomas Schwinge <tschwinge@gcc.gnu.org>2017-02-28 09:42:06 +0100
commitd03958cfdfa01c3ad63ac50c190a056f1add4dc0 (patch)
treea76496c7d223c849bbaf2617aed91afecf7fe85b /gcc/dumpfile.h
parentfd2b8c8bd3839a847cc40adc78561ab73448e4cb (diff)
Miscellaneous optimization group fixes
gcc/ * doc/optinfo.texi (Optimization groups): Fix option used for OPTGROUP_ALL. * doc/invoke.texi (-fopt-info): Document "omp". * dumpfile.h: Sort OPTGROUP_OMP before OPTGROUP_VEC. (OPTGROUP_ALL): Add OPTGROUP_OMP. * hsa-gen.c (pass_data_gen_hsail): Use OPTGROUP_OMP. * ipa-hsa.c (pass_data_ipa_hsa): Likewise. * omp-simd-clone.c (pass_data_omp_simd_clone): Likewise. From-SVN: r245769
Diffstat (limited to 'gcc/dumpfile.h')
-rw-r--r--gcc/dumpfile.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/dumpfile.h b/gcc/dumpfile.h
index 3886f98150c..fef58f5e9b1 100644
--- a/gcc/dumpfile.h
+++ b/gcc/dumpfile.h
@@ -98,12 +98,12 @@ enum tree_dump_index
#define OPTGROUP_IPA (1 << 1) /* IPA optimization passes */
#define OPTGROUP_LOOP (1 << 2) /* Loop optimization passes */
#define OPTGROUP_INLINE (1 << 3) /* Inlining passes */
-#define OPTGROUP_VEC (1 << 4) /* Vectorization passes */
-#define OPTGROUP_OMP (1 << 5) /* OMP (Offloading and Multi
+#define OPTGROUP_OMP (1 << 4) /* OMP (Offloading and Multi
Processing) transformations */
+#define OPTGROUP_VEC (1 << 5) /* Vectorization passes */
#define OPTGROUP_OTHER (1 << 6) /* All other passes */
#define OPTGROUP_ALL (OPTGROUP_IPA | OPTGROUP_LOOP | OPTGROUP_INLINE \
- | OPTGROUP_VEC | OPTGROUP_OTHER)
+ | OPTGROUP_OMP | OPTGROUP_VEC | OPTGROUP_OTHER)
/* Define a tree dump switch. */
struct dump_file_info