OSDN Git Service

* config/tc-i386.c (tc_x86_regname_to_dw2regnum): Use ARRAY_SIZE
authornickc <nickc>
Fri, 4 Jul 2003 10:46:34 +0000 (10:46 +0000)
committernickc <nickc>
Fri, 4 Jul 2003 10:46:34 +0000 (10:46 +0000)
  macro to compute size of selected register name array.

gas/ChangeLog
gas/config/tc-i386.c

index e425bd4..2d11c7d 100644 (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.
index 22db238..da747e3 100644 (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++)