* infcall.c (call_function_by_hand): Use correct VALUE_TYPE macro.

This commit is contained in:
Corinna Vinschen 2004-10-08 08:15:56 +00:00
parent 864274b0e9
commit b6c25a5605
2 changed files with 5 additions and 1 deletions

View 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.

View 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;