OSDN Git Service

* gdb.asm/s390.inc (gdbasm_datavar): Use `.long' to create `int'
authorjimb <jimb>
Mon, 3 Dec 2001 21:53:16 +0000 (21:53 +0000)
committerjimb <jimb>
Mon, 3 Dec 2001 21:53:16 +0000 (21:53 +0000)
variables on the S/390, not `.word'.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.asm/s390.inc

index d0a6648..824e52b 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-03  Jim Blandy  <jimb@redhat.com>
+
+       * gdb.asm/s390.inc (gdbasm_datavar): Use `.long' to create `int'
+       variables on the S/390, not `.word'.
+
 2001-11-30  Jim Blandy  <jimb@redhat.com>
 
        Add assembly-source tests for s390-ibm-linux.
index 04be5d6..196a960 100644 (file)
         lr %r0, %r0
         lr %r0, %r0
         .endm
+
+### Declare an `int' variable.
+        .macro gdbasm_datavar name value
+        .data
+\name:
+        .long \value
+        .endm