1#   Copyright (C) 2016-2017 Free Software Foundation, Inc.
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program; if not, write to the Free Software
15# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
16
17if {![istarget "arc*-*-*"]} then {
18  return
19}
20
21if {[which $OBJDUMP] == 0} then {
22    perror "$OBJDUMP does not exist"
23    return
24}
25
26send_user "Version [binutil_version $OBJDUMP]"
27
28###########################
29# Set up the test of dsp.s
30###########################
31
32if {![binutils_assemble $srcdir/$subdir/dsp.s tmpdir/dsp.o]} then {
33    return
34}
35
36if [is_remote host] {
37    set objfile [remote_download host tmpdir/dsp.o]
38} else {
39    set objfile tmpdir/dsp.o
40}
41
42# Make sure that a warning message is generated (because the disassembly does
43# not match the assembled instructions, which has happened because the user
44# has not specified a -M option on the disassembler command line, and so the
45# disassembler has had to guess as the instruction class in use).
46
47set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS --disassemble $objfile"]
48
49set want "Warning: disassembly.*vmac2hnfr\[ \t\]*r0,r2,r4.*dmulh12.f\[ \t\]*r0,r2,r4.*dmulh11.f"
50
51if [regexp $want $got] then {
52    pass "Warning test"
53} else {
54    fail "Warning test"
55}
56