* frame.c (frame_pop, frame_observer_target_changed): Call
[deliverable/binutils-gdb.git] / gas / testsuite / gas / lns / lns.exp
CommitLineData
bd0eb99b
RH
1# ??? This probably shouldn't be replicated here...
2proc run_list_test { name opts } {
3 global srcdir subdir
4 set testname "lns $name"
5 set file $srcdir/$subdir/$name
6 gas_run ${name}.s $opts ">&dump.out"
7 if { [regexp_diff "dump.out" "${file}.l"] } then {
8 fail $testname
9 verbose "output is [file_contents "dump.out"]" 2
10 return
11 }
12 pass $testname
13}
14
15if ![is_elf_format] then {
16 return
17}
18
19run_list_test "lns-diag-1" ""
20
69444d9f
AM
21# ??? Won't work on targets that don't have a bare "nop" insn.
22# Perhaps we could arrange for an include file or something that
23# defined a macro...
7c48b4f1
NC
24if { ![istarget ia64*-*-*]
25 && ![istarget i370-*-*]
26 && ![istarget i960-*-*]
27 && ![istarget mcore-*-*]
28 && ![istarget or32-*-*]
29 && ![istarget s390*-*-*] } {
1737851b
BW
30 # Use alternate file for targets using DW_LNS_fixed_advance_pc opcodes.
31 if { [istarget xtensa-*-*] } {
32 run_dump_test "lns-common-1-alt"
33 } else {
34 run_dump_test "lns-common-1"
35 }
bd0eb99b 36}
This page took 0.065934 seconds and 4 git commands to generate.