On Fri, May 12, 2017 at 3:00 PM, Martin Liška <mli...@suse.cz> wrote: > Second part changes 'int flags' to a new typedef. > All corresponding interfaces have been changed. > > Patch can bootstrap on ppc64le-redhat-linux and survives regression tests. > > Ready to be installed?
@@ -113,6 +114,14 @@ enum tree_dump_index #define OPTGROUP_ALL (OPTGROUP_IPA | OPTGROUP_LOOP | OPTGROUP_INLINE \ | OPTGROUP_OMP | OPTGROUP_VEC | OPTGROUP_OTHER) +/* Dump flags type. */ + +typedef uint64_t dump_flags_t; + +/* Dump flags type. */ + +typedef uint64_t dump_flags_t; + duplicate. +#define TDF_NONE 0 this now seems to "conflict" with #define TDF_LANG 0 /* is a lang-specific dump. */ ? that is, TDF_RTL | TDF_NONE would still be "none" conceptually ... Ok with the duplicate typedef removed. Thanks, Richard. > Martin