1 # Copyright
2004, 2007, 2009
2 # Free Software Foundation
, Inc.
4 # This
program is free software
; you can redistribute it and
/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation
; either version
3 of the License
, or
7 #
(at your option
) any later version.
9 # This
program is distributed in the hope that it will be useful
,
10 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License
for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this
program; if not
, write to the Free Software
16 # Foundation
, Inc.
, 51 Franklin Street
- Fifth Floor
, Boston
, MA
02110-1301, USA.
18 if {![istarget
"arm*-*-*"]} then {
22 if {![is_remote host
] && [which $OBJDUMP
] == 0} then {
23 perror
"$OBJDUMP does not exist"
27 send_user
"Version [binutil_version $OBJDUMP]"
29 ###########################
30 #
Set up the test of movem.s
31 ###########################
33 if {![binutils_assemble $srcdir
/$subdir
/thumb2
-cond.s tmpdir
/thumb2
-cond.o
]} then {
38 set objfile
[remote_download host tmpdir
/thumb2
-cond.o
]
40 set objfile tmpdir
/thumb2
-cond.o
43 # Make sure that conditional instructions are correctly decoded.
45 set got
[binutils_run $OBJDUMP
"$OBJDUMPFLAGS --disassemble --start-address=6 $objfile"]
47 set want
"bcc.w\[ \t\]*e12.*bx\[ \t\]*lr"
49 if [regexp $want $got
] then {
50 pass
"thumb2-cond test1"
52 fail
"thumb2-cond test1"
55 set got
[binutils_run $OBJDUMP
"$OBJDUMPFLAGS --disassemble --start-address=10 $objfile"]
57 set want
"bx\[ \t\]*lr"
59 if [regexp $want $got
] then {
60 pass
"thumb2-cond test2"
62 fail
"thumb2-cond test2"