* gas/vax/quad.exp: Use quad_elf.s for ELF targets.
* gas/vax/quad.s: Align * gas/vax/quad_elf.s: New version of quad.s with %reg.
This commit is contained in:
parent
96e97d9be1
commit
6c2beb0715
4 changed files with 13 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
|||
2002-08-26 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* gas/vax/quad.exp: Use quad_elf.s for ELF targets.
|
||||
* gas/vax/quad.s: Align
|
||||
* gas/vax/quad_elf.s: New version of quad.s with %reg.
|
||||
|
||||
* gas/sparc/sparc.exp (sparc_elf_setup): New.
|
||||
Use it to xfail for non-ELF targets.
|
||||
|
||||
|
|
|
@ -3,7 +3,11 @@ proc do_quad {} {
|
|||
set x1 0
|
||||
set x2 0
|
||||
set x3 0
|
||||
gas_start "quad.s" "-al"
|
||||
set file "quad.s"
|
||||
if [istarget vax-*-*elf*] {
|
||||
set file "quad_elf.s"
|
||||
}
|
||||
gas_start $file "-al"
|
||||
while 1 {
|
||||
expect {
|
||||
-re "^ +2\[ \t\]+0000+ 7D8F7856\[ \t\]+movq\[^\n\]*\n" { set x1 1 }
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
.text
|
||||
movq $0xaabbccdd12345678,r0
|
||||
.p2align 2
|
||||
|
|
3
gas/testsuite/gas/vax/quad_elf.s
Normal file
3
gas/testsuite/gas/vax/quad_elf.s
Normal file
|
@ -0,0 +1,3 @@
|
|||
.text
|
||||
movq $0xaabbccdd12345678,%r0
|
||||
.p2align 2
|
Loading…
Reference in a new issue