Author: ian
Date: Fri Aug  1 20:21:41 2014
New Revision: 269393
URL: http://svnweb.freebsd.org/changeset/base/269393

Log:
  Fix an bug in as(1) parsing of arm -march=arch+ext options.  Compare the
  arch name to just the characters before the '+' in 'arch+ext'.

Modified:
  head/contrib/binutils/gas/config/tc-arm.c

Modified: head/contrib/binutils/gas/config/tc-arm.c
==============================================================================
--- head/contrib/binutils/gas/config/tc-arm.c   Fri Aug  1 19:32:20 2014        
(r269392)
+++ head/contrib/binutils/gas/config/tc-arm.c   Fri Aug  1 20:21:41 2014        
(r269393)
@@ -20337,7 +20337,7 @@ arm_parse_arch (char * str)
     }
 
   for (opt = arm_archs; opt->name != NULL; opt++)
-    if (streq (opt->name, str))
+    if (strncmp (opt->name, str, optlen) == 0)
       {
        march_cpu_opt = &opt->value;
        march_fpu_opt = &opt->default_fpu;
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to