* sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
authorAndrew Cagney <cagney@redhat.com>
Sat, 6 Apr 2002 00:19:44 +0000 (00:19 +0000)
committerAndrew Cagney <cagney@redhat.com>
Sat, 6 Apr 2002 00:19:44 +0000 (00:19 +0000)
as test for 64 bit target.

gdb/ChangeLog
gdb/sparc-tdep.c

index 4d8d01b1ab44dc0155ff96b1573d32862959ccbf..a709c26e7203138d3765fc793bad1017c4173c66 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-04  Andrew Cagney  <ac131313@redhat.com>
+
+       * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
+       as test for 64 bit target.
+
 2002-04-05  Andrew Cagney  <ac131313@redhat.com>
 
        * h8500-tdep.c (h8500_write_fp): Delete function.
index f8bba7e84dbe7ae289db37287b3afdd25aa03891..ed3726e517bac766f1e03311235c5c7f3efaeef7 100644 (file)
@@ -992,7 +992,7 @@ sparc_push_dummy_frame (void)
          old function (sparc64_write_fp) did the below although I'm
          not clear why.  The same goes for why this is only done when
          the underlying target is a simulator.  */
-      if (gdbarch_tdep (current_gdbarch)->intreg_size == 8)
+      if (GDB_TARGET_IS_SPARC64)
        {
          /* Target is a 64 bit SPARC.  */
          CORE_ADDR oldfp = read_register (FP_REGNUM);