This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] s390-vregs.exp: Avoid compile errors with older GCCs and on 31-bit targets


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=af9fd6f863c9f184e2c84d8a4707b3ec7b8ca67b

commit af9fd6f863c9f184e2c84d8a4707b3ec7b8ca67b
Author: Andreas Arnez <arnez@linux.vnet.ibm.com>
Date:   Thu Apr 16 13:03:48 2015 +0200

    s390-vregs.exp: Avoid compile errors with older GCCs and on 31-bit targets
    
    The test case s390-vregs.exp yields compile errors on 31-bit targets
    as well as when using a GCC that defaults to an older "-march=".  This
    patch fixes these issues.
    
    gdb/testsuite/ChangeLog:
    
    	* gdb.arch/s390-vregs.S (change_vrs): Replace exrl by an
    	appropriate .insn, such that an older assembler can be used.
    	* gdb.arch/s390-vregs.exp: Add the compile flag -mzarch, to enable
    	the z/Architecture instruction set on 31-bit targets as well.

Diff:
---
 gdb/testsuite/ChangeLog               | 7 +++++++
 gdb/testsuite/gdb.arch/s390-vregs.S   | 4 ++--
 gdb/testsuite/gdb.arch/s390-vregs.exp | 3 ++-
 3 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 55a593a..0f2d552 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,5 +1,12 @@
 2015-04-16  Andreas Arnez  <arnez@linux.vnet.ibm.com>
 
+	* gdb.arch/s390-vregs.S (change_vrs): Replace exrl by an
+	appropriate .insn, such that an older assembler can be used.
+	* gdb.arch/s390-vregs.exp: Add the compile flag -mzarch, to enable
+	the z/Architecture instruction set on 31-bit targets as well.
+
+2015-04-16  Andreas Arnez  <arnez@linux.vnet.ibm.com>
+
 	* gdb.go/handcall.exp: Remove all logic related to the first
 	breakpoint and rely on go_runto_main instead.
 	* gdb.go/strings.exp: Likewise.
diff --git a/gdb/testsuite/gdb.arch/s390-vregs.S b/gdb/testsuite/gdb.arch/s390-vregs.S
index 4b48a83..7388e7d 100644
--- a/gdb/testsuite/gdb.arch/s390-vregs.S
+++ b/gdb/testsuite/gdb.arch/s390-vregs.S
@@ -56,8 +56,8 @@ change_vrs:
 	.cfi_startproc
 	lghi	%r1,16
 	lghi	%r3,0xff
-1:	exrl	%r3,2f
-	exrl	%r3,1f
+1:	.insn	ril,0xc60000000000,%r3,2f /* exrl */
+	.insn	ril,0xc60000000000,%r3,1f /* exrl */
 	aghi	%r3,-0x11
 	brctg	%r1,1b
 	br	%r14
diff --git a/gdb/testsuite/gdb.arch/s390-vregs.exp b/gdb/testsuite/gdb.arch/s390-vregs.exp
index 8333c32..7d3c9bb 100644
--- a/gdb/testsuite/gdb.arch/s390-vregs.exp
+++ b/gdb/testsuite/gdb.arch/s390-vregs.exp
@@ -29,7 +29,8 @@ if [isnative] {
     remote_exec build "mkdir $coredir"
 }
 
-if { [prepare_for_testing ${testfile}.exp $testfile $srcfile] } {
+if { [prepare_for_testing ${testfile}.exp $testfile $srcfile \
+	  [list "additional_flags=-mzarch"]] } {
     return -1
 }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]