[ARC] Fix handling of cpu=... disassembler option value
authorAnton Kolesov <Anton.Kolesov@synopsys.com>
Thu, 15 Jun 2017 12:58:32 +0000 (15:58 +0300)
committerAnton Kolesov <Anton.Kolesov@synopsys.com>
Thu, 29 Jun 2017 11:49:39 +0000 (14:49 +0300)
commite1e94c4994151ebe0e3a103fd0d27f60bd806bbe
tree59c0f13136fbf882c5be12ad11a828bdbba3087f
parentadc764e7d217d3e56af988ce20cedc98d8c4cc73
[ARC] Fix handling of cpu=... disassembler option value

There is a bug in handling of cpu=... disassembler option in case there are
other options after it, for example, `cpu=EM,dsp'.  In this case `EM,dsp' is
treated as an option value, and strcasecmp reports is as non-equal to "EM".
This is fixed by using disassembler_options_cmp function, which compares string
treating `,' the same way as `\0'.

This function also solves a problem with option order in parse_option.
Previously, if several option had same prefix (e.g. fpud, fpuda), then the
longer one should have been compared first, otherwise when longer option is
passed it would be treated as a short one, because

  CONST_STRNEQ ("fpud", "fpuda")

would be true.  The order of options was correct for ARC, so there were no
bugs per se, but with disassembler_option_cmp there is no risk of such a bug
being introduced in the future.

opcodes/ChangeLog:

yyyy-mm-dd  Anton Kolesov  <Anton.Kolesov@synopsys.com>

* arc-dis.c (parse_option): Use disassembler_options_cmp to compare
disassembler option strings.
(parse_cpu_option): Likewise.

binutils/ChangeLog

yyyy-mm-dd  Anton Kolesov  <Anton.Kolesov@synopsys.com>

* testsuite/binutils-all/arc/double_store.s: New file.
* testsuite/binutils-all/arc/objdump.exp: Tests for disassembler
options.
(do_objfile): New function.
(check_assembly): Likewise.
binutils/ChangeLog
binutils/testsuite/binutils-all/arc/double_store.s [new file with mode: 0644]
binutils/testsuite/binutils-all/arc/objdump.exp
opcodes/ChangeLog
opcodes/arc-dis.c
This page took 0.02963 seconds and 4 git commands to generate.