* dwarf2read.c (read_subroutine_type): Call make_function_type
authorCorinna Vinschen <corinna@vinschen.de>
Wed, 6 Oct 2004 08:46:21 +0000 (08:46 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Wed, 6 Oct 2004 08:46:21 +0000 (08:46 +0000)
instead of lookup_function_type.

gdb/ChangeLog
gdb/dwarf2read.c

index 608fecf..0b7c15c 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-06  Corinna Vinschen  <vinschen@redhat.com>
+
+       * dwarf2read.c (read_subroutine_type): Call make_function_type
+       instead of lookup_function_type.
+
 2004-10-05  Jim Blandy  <jimb@redhat.com>
 
        * linux-nat.c (_initialize_linux_nat): Rename child_ops.
index f6b7eca..9e1bbb9 100644 (file)
@@ -4569,7 +4569,7 @@ read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
       return;
     }
   type = die_type (die, cu);
-  ftype = lookup_function_type (type);
+  ftype = make_function_type (type, (struct type **) 0);
 
   /* All functions in C++ and Java have prototypes.  */
   attr = dwarf2_attr (die, DW_AT_prototyped, cu);