summaryrefslogtreecommitdiff
path: root/gdb/objc-lang.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@codesourcery.com>2004-02-18 04:22:35 +0000
committerJim Blandy <jimb@codesourcery.com>2004-02-18 04:22:35 +0000
commitc253954e00ea3c23f7ff74f73b94c85ce135b82e (patch)
tree139ba2f8953583dc2cb27f274e226277988cf670 /gdb/objc-lang.h
parent62f4b920f7e59d5b414fc581fdab175ecc578645 (diff)
2004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
Committed by Jim Blandy <jimb@redhat.com>. * eval.c (evaluate_subexp_standard, case OP_OBJC_MSGCALL): Use CORE_ADDR as type for selectors. Correct types for GNU run time message lookup function to use double indirection. * objc-lang.c (lookup_child_selector): Use CORE_ADDR as return type. * objc-lang.h (lookup_child_selector): Adapt prototype.
Diffstat (limited to 'gdb/objc-lang.h')
-rw-r--r--gdb/objc-lang.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/objc-lang.h b/gdb/objc-lang.h
index c88a0f7a5f..5a11c5dbf1 100644
--- a/gdb/objc-lang.h
+++ b/gdb/objc-lang.h
@@ -39,7 +39,7 @@ extern int c_value_print (struct value *, struct ui_file *,
int, enum val_prettyprint);
extern CORE_ADDR lookup_objc_class (char *classname);
-extern int lookup_child_selector (char *methodname);
+extern CORE_ADDR lookup_child_selector (char *methodname);
extern char *objc_demangle (const char *mangled, int options);