* config/tc-i386.c (tc_x86_regname_to_dw2regnum): Use ARRAY_SIZE

macro to compute size of selected register name array.
This commit is contained in:
Nick Clifton
2003-07-04 10:46:35 +00:00
parent 96c223ce90
commit 0cea619061
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-07-04 Nick Clifton <nickc@redhat.com>
* config/tc-i386.c (tc_x86_regname_to_dw2regnum): Use ARRAY_SIZE
macro to compute size of selected register name array.
2003-07-01 Martin Schwidefsky <schwidefsky@de.ibm.com>
* config/tc-s390.c (md_parse_option): Add cpu type z990.

View File

@ -6366,12 +6366,12 @@ tc_x86_regname_to_dw2regnum (const char *regname)
if (flag_code == CODE_64BIT)
{
regnames = regnames_64;
regnames_count = sizeof (regnames_64);
regnames_count = ARRAY_SIZE (regnames_64);
}
else
{
regnames = regnames_32;
regnames_count = sizeof (regnames_32);
regnames_count = ARRAY_SIZE (regnames_32);
}
for (regnum = 0; regnum < regnames_count; regnum++)