diff options
author | David Taylor <taylor@redhat.com> | 1998-12-28 23:06:13 +0000 |
---|---|---|
committer | David Taylor <taylor@redhat.com> | 1998-12-28 23:06:13 +0000 |
commit | 4ef1f4677390c085543fe80eec41b0fe5d58ddca (patch) | |
tree | d0e8320e4871a81733155e8ce653507dd3d64825 /gdb/language.c | |
parent | d6fdf61c78fbce1dad62cd1022e606fdaaad4202 (diff) | |
download | gdb-4ef1f4677390c085543fe80eec41b0fe5d58ddca.zip gdb-4ef1f4677390c085543fe80eec41b0fe5d58ddca.tar.gz gdb-4ef1f4677390c085543fe80eec41b0fe5d58ddca.tar.bz2 |
hp merge changes -- too numerous to mention here; see ChangeLog and
ChangeLog-gdbtk for details.
Diffstat (limited to 'gdb/language.c')
-rw-r--r-- | gdb/language.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/language.c b/gdb/language.c index db6d513..225d423 100644 --- a/gdb/language.c +++ b/gdb/language.c @@ -99,7 +99,7 @@ static void unk_lang_print_type PARAMS ((struct type *, char *, GDB_FILE *, int, int)); static int -unk_lang_val_print PARAMS ((struct type *, char *, CORE_ADDR, GDB_FILE *, +unk_lang_val_print PARAMS ((struct type *, char *, int, CORE_ADDR, GDB_FILE *, int, int, int, enum val_prettyprint)); static int @@ -834,7 +834,7 @@ lang_bool_type () if (type && TYPE_CODE (type) == TYPE_CODE_BOOL) return type; } - /* ... else fall through ... */ + return builtin_type_bool; default: return builtin_type_int; } @@ -1278,10 +1278,11 @@ unk_lang_print_type (type, varstring, stream, show, level) } static int -unk_lang_val_print (type, valaddr, address, stream, format, deref_ref, +unk_lang_val_print (type, valaddr, embedded_offset, address, stream, format, deref_ref, recurse, pretty) struct type *type; char *valaddr; + int embedded_offset; CORE_ADDR address; GDB_FILE *stream; int format; |