aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKung Hsu <kung@cygnus>1995-09-12 23:31:00 +0000
committerKung Hsu <kung@cygnus>1995-09-12 23:31:00 +0000
commitfe82872cca1d1097ef7f0e132ae4688b13401712 (patch)
tree5ef3e339a92eb6d7e18ea8c732bb374c661da6ba
parentaeca85c13afa016c2168009cef4d71263d02fe36 (diff)
downloadfsf-binutils-gdb-fe82872cca1d1097ef7f0e132ae4688b13401712.zip
fsf-binutils-gdb-fe82872cca1d1097ef7f0e132ae4688b13401712.tar.gz
fsf-binutils-gdb-fe82872cca1d1097ef7f0e132ae4688b13401712.tar.bz2
* stabsread.c: To include language.h and expression.h for the reason
above.
-rw-r--r--gdb/ChangeLog3
-rw-r--r--gdb/stabsread.c2
2 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 4ebb524..92d14a9 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -3,6 +3,9 @@ Tue Sep 12 15:46:18 1995 Kung Hsu <kung@mexican.cygnus.com>
* stabsread.c (read_one_struct_field): Add a patch to handle cfront
generated stabs that each field is in full mangled name.
+ * stabsread.c: To include language.h and expression.h for the reason
+ above.
+
* infcmd.c (attach_command): Add solibs only when
auto_solib_add_at_startup is set.
diff --git a/gdb/stabsread.c b/gdb/stabsread.c
index f9c619b..b716112 100644
--- a/gdb/stabsread.c
+++ b/gdb/stabsread.c
@@ -30,6 +30,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include "obstack.h"
#include "symtab.h"
#include "gdbtypes.h"
+#include "expression.h"
#include "symfile.h"
#include "objfiles.h"
#include "aout/stab_gnu.h" /* We always use GNU stabs, not native */
@@ -39,6 +40,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include "buildsym.h"
#include "complaints.h"
#include "demangle.h"
+#include "language.h"
#include <ctype.h>