tc-i386.c gcc10 warning fix

.../gas/config/tc-i386.c: In function ‘md_parse_option’:
.../gas/config/tc-i386.c:11441:9: error: implicit conversion from ‘enum <anonymous>’ to ‘enum <anonymous>’ [-Werror=enum-conversion]
11441 |  vexwig = evexw0;
      |         ^
.../gas/config/tc-i386.c:11443:9: error: implicit conversion from ‘enum <anonymous>’ to ‘enum <anonymous>’ [-Werror=enum-conversion]
11443 |  vexwig = evexw1;
      |         ^

	* config/tc-i386.c (md_parse_option): Fix warning on vexwig assignment.
This commit is contained in:
Alan Modra 2019-09-21 10:59:50 +09:30
parent f9d949fb7b
commit 40c9c8deb9
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2019-09-21 Alan Modra <amodra@gmail.com>
* config/tc-i386.c (md_parse_option): Fix warning on vexwig assignment.
2019-09-20 Alan Modra <amodra@gmail.com>
* config/tc-tic6x.c (tc_gen_reloc): Correct common symbol check.

View file

@ -11438,9 +11438,9 @@ md_parse_option (int c, const char *arg)
case OPTION_MVEXWIG:
if (strcmp (arg, "0") == 0)
vexwig = evexw0;
vexwig = vexw0;
else if (strcmp (arg, "1") == 0)
vexwig = evexw1;
vexwig = vexw1;
else
as_fatal (_("invalid -mvexwig= option: `%s'"), arg);
break;