diff options
Diffstat (limited to 'gdb/compile')
-rw-r--r-- | gdb/compile/compile-c-types.c | 2 | ||||
-rw-r--r-- | gdb/compile/compile-internal.h | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/compile/compile-c-types.c b/gdb/compile/compile-c-types.c index ccc9167..8dcb122 100644 --- a/gdb/compile/compile-c-types.c +++ b/gdb/compile/compile-c-types.c @@ -293,7 +293,7 @@ convert_qualified (struct compile_c_instance *context, struct type *type) { struct type *unqual = make_unqualified_type (type); gcc_type unqual_converted; - int quals = 0; + gcc_qualifiers_flags quals = 0; unqual_converted = convert_type (context, unqual); diff --git a/gdb/compile/compile-internal.h b/gdb/compile/compile-internal.h index b1a5a88..e931967 100644 --- a/gdb/compile/compile-internal.h +++ b/gdb/compile/compile-internal.h @@ -19,6 +19,10 @@ #include "hashtab.h" #include "gcc-c-interface.h" +#include "common/enum-flags.h" + +/* enum-flags wrapper. */ +DEF_ENUM_FLAGS_TYPE (enum gcc_qualifiers, gcc_qualifiers_flags); /* Debugging flag for the "compile" family of commands. */ |