Fix minor NDS32 renaming snafu.
authorNick Clifton <nickc@redhat.com>
Fri, 2 Jul 2021 09:45:02 +0000 (10:45 +0100)
committerNick Clifton <nickc@redhat.com>
Fri, 2 Jul 2021 09:45:02 +0000 (10:45 +0100)
* config/tc-nds32.c: Change all references of keyword_gpr to
nds32_keyword_gpr.

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

index 0d830d62b520be62e5e6aaa750e6751925cab7b4..c154835ddba9844333daed65543f24951e8d7dcf 100644 (file)
@@ -1,3 +1,8 @@
+2021-07-02  Nick Clifton  <nickc@redhat.com>
+
+       * config/tc-nds32.c: Change all references of keyword_gpr to
+       nds32_keyword_gpr.
+
 2021-07-01  Mike Frysinger  <vapier@gentoo.org>
 
        * config/tc-microblaze.c (md_begin): Make opcode const.  Rename
index c5bad6b476a6df38035c3ad385ebdb3794809517..04ae6895ec15f76434f815293aabbd04e993646e 100644 (file)
@@ -97,7 +97,7 @@ static int optimize_for_space = 0;
 static int label_exist = 0;
 /* Flag to save state in omit_fp region.  */
 static int in_omit_fp = 0;
-extern struct nds32_keyword keyword_gpr[];
+extern struct nds32_keyword nds32_keyword_gpr[];
 /* Tag there is relax relocation having to link.  */
 static bool relaxing = false;
 /* ICT model.  */
@@ -4615,7 +4615,7 @@ md_begin (void)
 
   /* Initial general purpose registers hash table.  */
   nds32_gprs_hash = str_htab_create ();
-  for (k = keyword_gpr; k->name; k++)
+  for (k = nds32_keyword_gpr; k->name; k++)
     str_hash_insert (nds32_gprs_hash, k->name, k, 0);
 
   /* Initial branch hash table.  */