Skip to content

Commit

Permalink
* gas/all/fwdexp.d: Also look for f8ffffff.
Browse files Browse the repository at this point in the history
        * gas/arm/msr-reg-thumb.d: Skip for non-ELF based targets.
        * gas/arm/vldr.d: Likewise.
        * gas/arm/thumb2_ldmstm.d: Allow for extra NOPs at the end of the disassembly.
        * gas/cfi/cfi.exp (cfi-arm-1): Only run for ELF based ARM targets.
  • Loading branch information
nickclifton committed Oct 22, 2010
1 parent 03cb634 commit 87c119b
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 1 deletion.
8 changes: 8 additions & 0 deletions gas/testsuite/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2010-10-22 Nick Clifton <[email protected]>

* gas/all/fwdexp.d: Also look for f8ffffff.
* gas/arm/msr-reg-thumb.d: Skip for non-ELF based targets.
* gas/arm/vldr.d: Likewise.
* gas/arm/thumb2_ldmstm.d: Allow for extra NOPs at the end of the disassembly.
* gas/cfi/cfi.exp (cfi-arm-1): Only run for ELF based ARM targets.

2010-10-21 Joseph Myers <[email protected]>

* gas/tic6x/attr-arch-directive-1.d,
Expand Down
2 changes: 1 addition & 1 deletion gas/testsuite/gas/all/fwdexp.d
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ OFFSET +TYPE +VALUE
0+ .*(\.data|i)(|\+0xf+e|\+0xf+c|\+0xf+8)

Contents of section .*
0+ (0+|feff|fffe|fcffffff|fffffffc|f8ffffff ffffffff|ffffffff fffffff8) .*
0+ (0+|feff|fffe|fcffffff|fffffffc|f8ffffff|f8ffffff ffffffff|ffffffff fffffff8) .*
1 change: 1 addition & 0 deletions gas/testsuite/gas/arm/msr-reg-thumb.d
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# as: -march=armv7-a -mthumb
# source: msr-reg.s
# objdump: -dr --prefix-addresses --show-raw-insn
# skip: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd

.*: +file format .*arm.*

Expand Down
1 change: 1 addition & 0 deletions gas/testsuite/gas/arm/thumb2_ldmstm.d
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,4 @@ Disassembly of section .text:
0[0-9a-f]+ <[^>]+> 9800 ldr r0, \[sp, #0\]
0[0-9a-f]+ <[^>]+> f848 9b04 str.w r9, \[r8\], #4
0[0-9a-f]+ <[^>]+> f8c8 9000 str.w r9, \[r8\]
#pass
1 change: 1 addition & 0 deletions gas/testsuite/gas/arm/vldr.d
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# as: -mfpu=vfp3 -mcpu=cortex-a8 -mthumb
# source: vldr.s
# objdump: -dr --prefix-addresses --show-raw-insn
# skip: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd

.*: +file format .*arm.*

Expand Down
4 changes: 4 additions & 0 deletions gas/testsuite/gas/cfi/cfi.exp
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ if { [istarget "i*86-*-*"] || [istarget "x86_64-*-*"] } then {
}

} elseif { [istarget "arm*-*"] || [istarget "xscale*-*"] } then {
# Only ELF based ARM targets support CFI.
if { [is_pecoff_format] } then {
return
}
run_dump_test "cfi-arm-1"

} elseif { [istarget "mips*-*"] } then {
Expand Down

0 comments on commit 87c119b

Please sign in to comment.