gas: bfin: replace index() with strchr()
authorMike Frysinger <vapier@gentoo.org>
Tue, 20 Apr 2010 07:10:31 +0000 (07:10 +0000)
committerMike Frysinger <vapier@gentoo.org>
Tue, 20 Apr 2010 07:10:31 +0000 (07:10 +0000)
gas/ChangeLog
gas/config/bfin-lex.l

index 5f5d2b1280497de43e86b82d7dfa77fa72446cbe..78920e674933a1bf5564e3ac305615a0febaaa9f 100644 (file)
@@ -1,3 +1,7 @@
+2010-04-20  Mike Frysinger  <vapier@gentoo.org>
+
+       * config/bfin-lex.l (parse_int): Change index() to strchr().
+
 2010-04-16  Nick Clifton  <nickc@redhat.com>
 
        PR gas/11395
index 6571c8f7a87ce73e2670f01468e6be8cebbba4ff..1b80bf9f1f853bf4b05d05432fecea213322b032 100644 (file)
@@ -483,7 +483,7 @@ static long parse_int (char **end)
     {
       char c;
       c = *arg++;
-      if (c == 0 || !index (char_bag, c))
+      if (c == 0 || !strchr (char_bag, c))
        {
           not_done = 0;
           *--arg = c;