OSDN Git Service

* infcall.c (call_function_by_hand): Use correct VALUE_TYPE macro.
authorcorinna <corinna>
Fri, 8 Oct 2004 08:15:56 +0000 (08:15 +0000)
committercorinna <corinna>
Fri, 8 Oct 2004 08:15:56 +0000 (08:15 +0000)
gdb/ChangeLog
gdb/infcall.c

index 6a0ba78..3260805 100644 (file)
@@ -1,3 +1,7 @@
+2004-10-08  Corinna Vinschen  <vinschen@redhat.com>
+
+       * infcall.c (call_function_by_hand): Use correct VALUE_TYPE macro.
+
 2004-10-08  Nick Roberts  <nickrob@snap.net.nz>
 
        * MAINTAINERS: Update e-mail address.
index 53bcffd..ec4f11a 100644 (file)
@@ -307,7 +307,7 @@ call_function_by_hand (struct value *function, int nargs, struct value **args)
   CORE_ADDR funaddr;
   int using_gcc;               /* Set to version of gcc in use, or zero if not gcc */
   CORE_ADDR real_pc;
-  struct type *ftype = check_typedef (SYMBOL_TYPE (function));
+  struct type *ftype = check_typedef (VALUE_TYPE (function));
   CORE_ADDR bp_addr;
   struct regcache *caller_regcache;
   struct cleanup *caller_regcache_cleanup;