gas: arm -mwarn-syms duplicates
authorAlan Modra <amodra@gmail.com>
Thu, 7 Jul 2022 12:11:17 +0000 (21:41 +0930)
committerAlan Modra <amodra@gmail.com>
Sat, 9 Jul 2022 11:30:09 +0000 (21:00 +0930)
arm gas is only supposed to warn once per symbol for -mwarn-syms, but
doesn't because the str_hash_find added with commit 629310abec88
always returns NULL.  That's so because the str_hash_insert inserts a
NULL value for the key,value pair.  Let str_hash_insert do the job
instead.

* config/tc-arm.c (arm_tc_equal_in_insn): Correct already_warned
logic.
* testsuite/gas/arm/pr18347.s: Modify to generate duplicate
warning without this patch.

gas/config/tc-arm.c
gas/testsuite/gas/arm/pr18347.s

index 2e6d175482efe4bc58a2e277bd2cc4c48f9e1863..68fd6896607d5f4a8b179933fe28eab4e3bc545d 100644 (file)
@@ -28120,11 +28120,8 @@ arm_tc_equal_in_insn (int c ATTRIBUTE_UNUSED, char * name)
            already_warned = str_htab_create ();
          /* Only warn about the symbol once.  To keep the code
             simple we let str_hash_insert do the lookup for us.  */
-         if (str_hash_find (already_warned, nbuf) == NULL)
-           {
-             as_warn (_("[-mwarn-syms]: Assignment makes a symbol match an ARM instruction: %s"), name);
-             str_hash_insert (already_warned, nbuf, NULL, 0);
-           }
+         if (str_hash_insert (already_warned, nbuf, NULL, 0) == NULL)
+           as_warn (_("[-mwarn-syms]: Assignment makes a symbol match an ARM instruction: %s"), name);
        }
       else
        free (nbuf);
index 591d69baa830915418457f0f04815b4e8ea73344..64a16cb7678e589807a6c6a996d8a60837cbf3e0 100644 (file)
@@ -1,5 +1,6 @@
     MOV r1, r0
     LDR =garbage // no destination register
+    LDR =garbage // and it should only warn once
     MOV r2, r3
 
        // The warning should only be triggered by a "foo = bar"