Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [patch] Fix x86-64 build
@ 2002-11-11  8:00 Andrew Cagney
  2002-11-11  8:09 ` Michal Ludvig
  0 siblings, 1 reply; 3+ messages in thread
From: Andrew Cagney @ 2002-11-11  8:00 UTC (permalink / raw)
  To: gdb-patches

[-- Attachment #1: Type: text/plain, Size: 103 bytes --]

Hello,

This quick hack gets around my x86-64 build problem that MarkK pointed out.

Committed,
Andrew

[-- Attachment #2: diffs --]
[-- Type: text/plain, Size: 963 bytes --]

2002-11-11  Andrew Cagney  <ac131313@redhat.com>

	* x86-64-tdep.c (i386_fp_regnum_p): Copy i386-tdep.c's
	i386_fp_regnum_p.

Index: gdb/x86-64-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/x86-64-tdep.c,v
retrieving revision 1.36
diff -u -r1.36 x86-64-tdep.c
--- gdb/x86-64-tdep.c	2 Nov 2002 14:59:10 -0000	1.36
+++ gdb/x86-64-tdep.c	11 Nov 2002 15:49:47 -0000
@@ -175,6 +175,15 @@
   return *x86_64_register_info_table[regno].type;
 }
 
+/* FIXME: cagney/2002-11-11: Once the i386 and x86-64 targets are
+   merged, this function can go away.  */
+int
+i386_fp_regnum_p (int regnum)
+{
+  return (regnum < NUM_REGS
+	  && (FP0_REGNUM && FP0_REGNUM <= (regnum) && (regnum) < FPC_REGNUM));
+}
+
 /* x86_64_register_convertible is true if register N's virtual format is
    different from its raw format.  Note that this definition assumes
    that the host supports IEEE 32-bit floats, since it doesn't say

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2002-11-16  0:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-11-11  8:00 [patch] Fix x86-64 build Andrew Cagney
2002-11-11  8:09 ` Michal Ludvig
2002-11-15 16:12   ` [patch] Add i386_sse_regnum_p() to x86-64-linux-nat..c; Was: " Andrew Cagney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox