diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2008-09-11 14:08:33 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2008-09-11 14:08:33 +0000 |
commit | c841afd52aeb4292e2d9b294b78b71f7bc14313a (patch) | |
tree | a6a00612205061876ed1c46babf6b753ec8723ba /gdb/ada-exp.y | |
parent | 5cb12a973a5d2f655e19f83a863e1a25f59375a9 (diff) | |
download | gdb-c841afd52aeb4292e2d9b294b78b71f7bc14313a.zip gdb-c841afd52aeb4292e2d9b294b78b71f7bc14313a.tar.gz gdb-c841afd52aeb4292e2d9b294b78b71f7bc14313a.tar.bz2 |
* parser-defs.h (write_exp_msymbol): Remove TEXT_SYMBOL_TYPE
and DATA_SYMBOL_TYPE arguments.
* parse.c (write_exp_msymbol): Remove TEXT_SYMBOL_TYPE and
DATA_SYMBOL_TYPE arguments. Replace use of builtin_type_CORE_ADDR.
(write_dollar_variable): Update call.
* ada-exp.y (write_var_or_type): Update call.
* c-exp.y: Likewise.
* f-exp.y: Likewise.
* jv-exp.y: Likewise.
* m2-exp.y: Likewise.
* objc-exp.y: Likewise.
* p-exp.y: Likewise.
Diffstat (limited to 'gdb/ada-exp.y')
-rw-r--r-- | gdb/ada-exp.y | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/ada-exp.y b/gdb/ada-exp.y index c146baf..e44cc68 100644 --- a/gdb/ada-exp.y +++ b/gdb/ada-exp.y @@ -1370,8 +1370,7 @@ write_var_or_type (struct block *block, struct stoken name0) = ada_lookup_simple_minsym (encoded_name); if (msym != NULL) { - write_exp_msymbol (msym, lookup_function_type (type_int ()), - type_int ()); + write_exp_msymbol (msym); /* Maybe cause error here rather than later? FIXME? */ write_selectors (encoded_name + tail_index); return NULL; |