aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2020-06-11 15:48:12 +0930
committerAlan Modra <amodra@gmail.com>2020-06-11 15:50:33 +0930
commitf0aa30258af17ab0234951cbf9644837a99036e5 (patch)
tree6bc6050c81babd65e4493ca5e6b3ae2e560ed1c9
parentfd17d1e695518ab45c6a06596df2e6c09c1d1a46 (diff)
downloadgdb-f0aa30258af17ab0234951cbf9644837a99036e5.zip
gdb-f0aa30258af17ab0234951cbf9644837a99036e5.tar.gz
gdb-f0aa30258af17ab0234951cbf9644837a99036e5.tar.bz2
PR26107, Compilation failure in pdp11.c
PR 26107 * pdp11.c (is_stab): Replace legacy "index" function with "strchr".
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/pdp11.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 688ffad..6159d3a 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -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.
diff --git a/bfd/pdp11.c b/bfd/pdp11.c
index fecaa21..c9b26c2 100644
--- a/bfd/pdp11.c
+++ b/bfd/pdp11.c
@@ -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