summaryrefslogtreecommitdiff
path: root/gdb/ada-lang.h
diff options
context:
space:
mode:
authorPaul N. Hilfinger <hilfinger@adacore.com>2004-10-08 09:40:12 +0000
committerPaul N. Hilfinger <hilfinger@adacore.com>2004-10-08 09:40:12 +0000
commit11e92aa6b34898aca051e4432cc86f65df52e39a (patch)
tree5ad81b13fef770771d755d98ca8ed4d98d5d1d1e /gdb/ada-lang.h
parentf0100faec44a0f9433558abb51374e0e4f66ae4f (diff)
downloadgdb-11e92aa6b34898aca051e4432cc86f65df52e39a.tar.gz
* ada-typeprint.c (ada_print_type): Use int_string for printing
modulus of modular type. * ada-lang.h (ada_modulus): Change return type to unsigned. * ada-lang.c (ada_language_arch_info): Correct type of string_char_type. (ada_modulus): Return unsigned result. (ada_lookup_symbol): Remove user disambiguation and modify comment accordingly. 2004-10-08 Eric Botcazou <ebotcazou@act-europe.fr> Committed by Paul Hilfinger. * ada-lang.c (decode_packed_array): On big-endian targets, left-justify the value if it comes with a modular type. 2004-10-08 Joel Brobecker <brobecker@gnat.com> Committed by Paul Hilfinger. * ada-lang.c (template_to_static_fixed_type): Fix a small typo. (is_name_suffix): Add support for "___JM" suffixes. (ada_check_typedef): Renames ada_completed_type. Update all users of CHECK_TYPEDEF, check_typedef, and ada_complete_type to call ada_check_typedef. * ada-typeprint.c: Likewise. * ada-valprint.c: Likewise.
Diffstat (limited to 'gdb/ada-lang.h')
-rw-r--r--gdb/ada-lang.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/ada-lang.h b/gdb/ada-lang.h
index a2f929adbc3..18a662a0730 100644
--- a/gdb/ada-lang.h
+++ b/gdb/ada-lang.h
@@ -367,7 +367,7 @@ extern int ada_prefer_type (struct type *, struct type *);
extern struct type *ada_get_base_type (struct type *);
-extern struct type *ada_completed_type (struct type *);
+extern struct type *ada_check_typedef (struct type *);
extern char *ada_encode (const char *);
@@ -375,7 +375,7 @@ extern const char *ada_enum_name (const char *);
extern int ada_is_modular_type (struct type *);
-extern LONGEST ada_modulus (struct type *);
+extern ULONGEST ada_modulus (struct type *);
extern struct value *ada_value_ind (struct value *);