HP 300 BSD port for machines at FSF. Also minor mips change.
[deliverable/binutils-gdb.git] / gdb / tm-i960.h
index 0b8785f6e26a0b665878416df5d7ce05b6ad48d4..8c3116bd1b4adc7d80cf8e9f37bb7889225651f7 100644 (file)
@@ -175,10 +175,10 @@ extern CORE_ADDR saved_pc_after_call ();
 
 #define REGISTER_CONVERT_TO_VIRTUAL(REGNUM,FROM,TO)     \
 { \
-  extern struct ext_format ext_format_i960[];          \
+  extern struct ext_format ext_format_i960;            \
   \
   if ((REGNUM) >= FP0_REGNUM)   \
-    ieee_extended_to_double (ext_format_i960, (FROM), (TO));     \
+    ieee_extended_to_double (&ext_format_i960, (FROM), (double *)(TO));     \
   else                                  \
     bcopy ((FROM), (TO), 4);   \
 }
@@ -188,10 +188,10 @@ extern CORE_ADDR saved_pc_after_call ();
 
 #define REGISTER_CONVERT_TO_RAW(REGNUM,FROM,TO) \
 { \
-  extern struct ext_format ext_format_i960[];          \
+  extern struct ext_format ext_format_i960;            \
   \
   if ((REGNUM) >= FP0_REGNUM)   \
-    double_to_ieee_extended (ext_format_i960, (FROM), (TO));     \
+    double_to_ieee_extended (&ext_format_i960, (double *)(FROM), (TO));     \
   else                                  \
     bcopy ((FROM), (TO), 4);   \
 }
This page took 0.023885 seconds and 4 git commands to generate.