aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog8
-rw-r--r--gdb/buildsym.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index c20fb18..3a5c64d 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,11 @@
+Thu Apr 9 13:35:00 1992 Per Bothner (bothner@rtl.cygnus.com)
+
+ Changes from metin@ibmpa.awdpa.ibm.com (Metin G. Ozisik).
+ * buildsym.c (#ifdef RS6000_TARGET): Don't create unnecessary
+ symbols for nameless types. And, handle `R' (register parameter
+ type) for AIX. (an extension to existing stabstring grammar).
+ * rs6000-xdep.c: Fix typo (= should have been ==).
+
Thu Apr 9 12:10:06 1992 Stu Grossman (grossman at cygnus.com)
* Makefile.in: version=4.4.88, add xm-vax.h to HFILES.
diff --git a/gdb/buildsym.c b/gdb/buildsym.c
index c10edc6..fd86a28 100644
--- a/gdb/buildsym.c
+++ b/gdb/buildsym.c
@@ -1253,7 +1253,7 @@ define_symbol (valu, string, desc, type, objfile)
#ifdef IBM6000_TARGET
else if (deftype == 'R')
- SYMBOL_TYPE (sym) = read_type (&p);
+ SYMBOL_TYPE (sym) = read_type (&p, objfile);
#endif
else