diff options
author | Daniel Jacobowitz <drow@false.org> | 2002-05-12 02:20:38 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2002-05-12 02:20:38 +0000 |
commit | 4a1970e4a429204b221938e52804b9a2a5ec1001 (patch) | |
tree | b4f26a59a53183d09a033c88a489259470d12820 /gdb/Makefile.in | |
parent | b2e75d78994bf7899fdb51387a9d95950f09ad9a (diff) | |
download | gdb-4a1970e4a429204b221938e52804b9a2a5ec1001.zip gdb-4a1970e4a429204b221938e52804b9a2a5ec1001.tar.gz gdb-4a1970e4a429204b221938e52804b9a2a5ec1001.tar.bz2 |
2005-05-11 Daniel Jacobowitz <drow@mvista.com>
Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
* Makefile.in: Update dependencies for valops.c.
* valops.c: Include "gdb_assert.h".
(typecmp): Skip THIS parameter to methods.
(find_method_list): Remove static_memfuncp argument,
update callers. Check for stub methods.
(find_value_oload_method_list): Don't set *static_memfuncp.
(find_overload_match): Don't check for stub methods. Assert
that methods are not stubbed. Handle static methods.
(value_find_oload_method_list): Remove static_memfuncp argument.
* gdbtypes.c (check_stub_method): Do not add THIS pointer
to the argument list for static stub methods.
* value.h (value_find_oload_method_list): Update prototype.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 0aced49..118c945 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2144,7 +2144,7 @@ valarith.o: valarith.c $(bfd_h) $(defs_h) $(expression_h) \ $(gdb_string_h) $(doublest_h) valops.o: valops.c $(defs_h) $(gdbcore_h) $(inferior_h) $(target_h) \ - $(gdb_string_h) $(regcache_h) $(cp_abi_h) + $(gdb_string_h) $(regcache_h) $(cp_abi_h) $(gdb_assert_h) valprint.o: valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \ $(gdbcore_h) $(gdbtypes_h) $(language_h) $(symtab_h) $(target_h) \ |