Remove remnant of Chill support.

gdb/ChangeLog:

	* valops.c (do_search_struct_field): Remove remnant of Chill support.
	Ref: commit 4c2260aa5c
This commit is contained in:
Doug Evans 2014-12-02 16:15:53 -08:00
parent 01828971bc
commit 47c6ee4990
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2014-12-02 Doug Evans <dje@google.com>
* valops.c (do_search_struct_field): Remove remnant of Chill support.
Ref: commit 4c2260aa5c261f7bfb26dcf3aa7c67876720b17e
2014-12-02 Simon Marchi <simon.marchi@ericsson.com>
* common/cleanups.c (make_cleanup_dtor): Fix comment typo.

View File

@ -1825,9 +1825,7 @@ do_search_struct_field (const char *name, struct value *arg1, int offset,
}
if (t_field_name
&& (t_field_name[0] == '\0'
|| (TYPE_CODE (type) == TYPE_CODE_UNION
&& (strcmp_iw (t_field_name, "else") == 0))))
&& t_field_name[0] == '\0')
{
struct type *field_type = TYPE_FIELD_TYPE (type, i);