svn commit: r269393 - head/contrib/binutils/gas/config

Ian Lepore ian at FreeBSD.org
Fri Aug 1 20:21:42 UTC 2014


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;


More information about the svn-src-head mailing list