forked from Imagelibrary/binutils-gdb
gdb: remove TYPE_FIELD_ARTIFICIAL
Replace with type::field + field::is_artificial. Change-Id: Ie3bacae49d9bd02e83e504c1ce01470aba56a081 Approved-By: Tom Tromey <tom@tromey.com>
This commit is contained in:
committed by
Simon Marchi
parent
6c0f749351
commit
454977cdc4
@@ -1932,7 +1932,7 @@ fortran_prepare_argument (struct expression *exp,
|
||||
|
||||
bool is_artificial = ((arg_num >= func_type->num_fields ())
|
||||
? true
|
||||
: TYPE_FIELD_ARTIFICIAL (func_type, arg_num));
|
||||
: func_type->field (arg_num).is_artificial ());
|
||||
|
||||
/* If this is an artificial argument, then either, this is an argument
|
||||
beyond the end of the known arguments, or possibly, there are no known
|
||||
|
||||
Reference in New Issue
Block a user