aboutsummaryrefslogtreecommitdiff
path: root/gdb/m2-exp.y
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2008-09-11 14:08:33 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2008-09-11 14:08:33 +0000
commitc841afd52aeb4292e2d9b294b78b71f7bc14313a (patch)
treea6a00612205061876ed1c46babf6b753ec8723ba /gdb/m2-exp.y
parent5cb12a973a5d2f655e19f83a863e1a25f59375a9 (diff)
downloadfsf-binutils-gdb-c841afd52aeb4292e2d9b294b78b71f7bc14313a.zip
fsf-binutils-gdb-c841afd52aeb4292e2d9b294b78b71f7bc14313a.tar.gz
fsf-binutils-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/m2-exp.y')
-rw-r--r--gdb/m2-exp.y7
1 files changed, 1 insertions, 6 deletions
diff --git a/gdb/m2-exp.y b/gdb/m2-exp.y
index 951f778..bb1c4ea 100644
--- a/gdb/m2-exp.y
+++ b/gdb/m2-exp.y
@@ -630,12 +630,7 @@ variable: NAME
msymbol =
lookup_minimal_symbol (arg, NULL, NULL);
if (msymbol != NULL)
- {
- write_exp_msymbol
- (msymbol,
- lookup_function_type (builtin_type_int),
- builtin_type_int);
- }
+ write_exp_msymbol (msymbol);
else if (!have_full_symbols () && !have_partial_symbols ())
error ("No symbol table is loaded. Use the \"symbol-file\" command.");
else