summaryrefslogtreecommitdiff
path: root/gdb/stabsread.c
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2009-06-29 13:19:18 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2009-06-29 13:19:18 +0000
commita7e02f173d9f437015226e217996d052f33ee0ce (patch)
tree2578d88af3af3b1be6ee285397f1f281960ca8e4 /gdb/stabsread.c
parenta727993190e15bfc43be821ca00ea79f11c3712b (diff)
downloadgdb-a7e02f173d9f437015226e217996d052f33ee0ce.tar.gz
* gdbtypes.h (make_function_type): Remove OBJFILE parameter.
* gdbtypes.c (make_function_type): Remove OBJFILE parameter. (lookup_function_type): Update call. * stabsread.c (read_type): Likewise. * dwarf2read.c (read_subroutine_type): Use lookup_function_type instead of make_function_type. * jv-lang.c (type_from_class): Likewise. Do not allocate types on the fake "dynamics" obstack.
Diffstat (limited to 'gdb/stabsread.c')
-rw-r--r--gdb/stabsread.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/stabsread.c b/gdb/stabsread.c
index 624a4c0f30b..e62bb15ad3b 100644
--- a/gdb/stabsread.c
+++ b/gdb/stabsread.c
@@ -1682,8 +1682,7 @@ again:
case 'f': /* Function returning another type */
type1 = read_type (pp, objfile);
- type = make_function_type (type1, dbx_lookup_type (typenums, objfile),
- objfile);
+ type = make_function_type (type1, dbx_lookup_type (typenums, objfile));
break;
case 'g': /* Prototyped function. (Sun) */
@@ -1707,7 +1706,7 @@ again:
struct type *return_type = read_type (pp, objfile);
struct type *func_type
= make_function_type (return_type,
- dbx_lookup_type (typenums, objfile), objfile);
+ dbx_lookup_type (typenums, objfile));
struct type_list {
struct type *type;
struct type_list *next;