# Copyright (C) 2012-2020 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # # Some generic VAX tests # proc do_quad {} { set testname "quad.s: quadword immediate values" set x1 0 set x2 0 set x3 0 set file "quad.s" if { [istarget vax-*-*elf*] || [istarget vax-*-linux-*] } then { set file "quad_elf.s" } gas_start $file "-al" while 1 { expect { -re "^ +2\[ \t\]+0000+ 7D8F7856\[ \t\]+movq\[^\n\]*\n" { set x1 1 } -re "^ +2\[ \t\]+3412DDCC\[^\n\]*\n" { set x2 1 } -re "^ +2\[ \t\]+BBAA50\[ \t\]*\r\n" { set x3 1 } -re "\[^\n\]*\n" { } timeout { perror "timeout\n"; break } eof { break } } } gas_finish if [all_ones $x1 $x2 $x3] then { pass $testname } else { fail $testname } } if [istarget vax-*-* ] then { do_quad run_dump_test "flonum" if { [istarget vax-*-*elf*] || [istarget vax-*-linux-*] } then { run_dump_test "elf-rel" } } |