o * ppc.h (ppc_cpu_t): Typedef to uint64_t.
[deliverable/binutils-gdb.git] / gdb / stabsread.c
index 624a4c0f30b6d73544d3cca58221b304ff08e651..e62bb15ad3bb691ffe407ee29738a7d2546a08e1 100644 (file)
@@ -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;
This page took 0.025127 seconds and 4 git commands to generate.