PR26107, Compilation failure in pdp11.c
authorAlan Modra <amodra@gmail.com>
Thu, 11 Jun 2020 06:18:12 +0000 (15:48 +0930)
committerAlan Modra <amodra@gmail.com>
Thu, 11 Jun 2020 06:20:33 +0000 (15:50 +0930)
PR 26107
* pdp11.c (is_stab): Replace legacy "index" function with "strchr".

bfd/ChangeLog
bfd/pdp11.c

index 688ffad01f6f86513c9b00ebe044176358fca200..6159d3aea3fb5aa3430b87777ac0af1ef35cf7f5 100644 (file)
@@ -1,3 +1,8 @@
+2020-06-11  Alan Modra  <amodra@gmail.com>
+
+       PR 26107
+       * pdp11.c (is_stab): Replace legacy "index" function with "strchr".
+
 2020-06-10  H.J. Lu  <hongjiu.lu@intel.com>
 
        * elfnn-ia64.c (elfNN_ia64_link_hash_table): Remove reltext.
index fecaa21ef5f4cafc63d6c7bae6ce16f1507dd804..c9b26c205232f30d5cf9698714fe26b690d8a36b 100644 (file)
@@ -336,8 +336,8 @@ static int
 is_stab (int type, const char *name)
 {
   if (type == N_GSYM || type == N_FUN)
-    return (index(name, ':') != NULL);
-  return (type > N_FUN);
+    return strchr (name, ':') != NULL;
+  return type > N_FUN;
 }
 
 static int