* mips-tdep.c: include symfile.h and objfiles.h to fix
authorStu Grossman <grossman@cygnus>
Tue, 24 Mar 1992 07:02:52 +0000 (07:02 +0000)
committerStu Grossman <grossman@cygnus>
Tue, 24 Mar 1992 07:02:52 +0000 (07:02 +0000)
compilation errors.

gdb/ChangeLog
gdb/mips-tdep.c

index 02a1c0f97a4a613165853028e5bdebac5a75323c..6cfc985dd05aa415167a35aec26a04818f4759af 100644 (file)
@@ -1,3 +1,8 @@
+Mon Mar 23 23:01:41 1992  Stu Grossman  (grossman at cygnus.com)
+
+       * mips-tdep.c:  include symfile.h and objfiles.h to fix
+       compilation errors.
+
 Mon Mar 23 15:49:14 1992  Per Bothner  (bothner@cygnus.com)
 
        * valops.c (value_struct_elt_for_reference):  Added 'offset'
index 134bc747e158b00818714dd80eb73f16557a043d..2a21b88e0c4f5ab260177886284dade44e881bad 100644 (file)
@@ -43,6 +43,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #endif
 
 #include "gdbcore.h"
+#include "symfile.h"
+#include "objfiles.h"
 
 #ifndef        MIPSMAGIC
 #ifdef MIPSEL
@@ -287,7 +289,7 @@ FRAME_ADDR mips_frame_chain(frame)
 {
     mips_extra_func_info_t proc_desc;
     CORE_ADDR saved_pc = FRAME_SAVED_PC(frame);
-    if (current_objfile -> ei.entry_file_lowpc)
+    if (current_objfile->ei.entry_file_lowpc)
       { /* has at least the __start symbol */
        if (saved_pc == 0 || inside_entry_file (saved_pc)) return 0;
       }