diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-09-26 16:38:02 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-10-29 16:44:45 -0400 |
commit | 970db5186051c051d9c5bd1f7ed404902b96fa80 (patch) | |
tree | ec3f149b291e22c532b6b61367fd9b2abcdff0e4 /gdb/python | |
parent | b610c04548a39dbce6d51c33d7a8125e59066939 (diff) | |
download | gdb-970db5186051c051d9c5bd1f7ed404902b96fa80.zip gdb-970db5186051c051d9c5bd1f7ed404902b96fa80.tar.gz gdb-970db5186051c051d9c5bd1f7ed404902b96fa80.tar.bz2 |
gdb: remove TYPE_FIELD_ENUMVAL
Remove TYPE_FIELD_ENUMVAL, replace with type::field +
field::loc_enumval.
Change-Id: I2ada73e4635aad3363ce2eb22c1dc52698ee2072
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/py-type.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/py-type.c b/gdb/python/py-type.c index 0895093..8b17b70 100644 --- a/gdb/python/py-type.c +++ b/gdb/python/py-type.c @@ -184,7 +184,7 @@ convert_field (struct type *type, int field) if (type->code () == TYPE_CODE_ENUM) { - arg = gdb_py_object_from_longest (TYPE_FIELD_ENUMVAL (type, field)); + arg = gdb_py_object_from_longest (type->field (field).loc_enumval ()); attrstring = "enumval"; } else |