On 01/21/2016 03:35 PM, Jakub Jelinek wrote:
+static const dwarf_qual_info_t dwarf_qual_info[] = +{ + { TYPE_QUAL_ATOMIC, DW_TAG_atomic_type }, + { TYPE_QUAL_RESTRICT, DW_TAG_restrict_type }, + { TYPE_QUAL_VOLATILE, DW_TAG_volatile_type }, + { TYPE_QUAL_CONST, DW_TAG_const_type }, +};
Let's go ahead and move const to the top of this array; it should be much more common than the others. OK with that change.
Jason