diff options
author | Per Bothner <per@bothner.com> | 1995-01-23 21:20:58 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1995-01-23 21:20:58 +0000 |
commit | 6d34c23688b9d441b6daba6dff56d6a4389bc058 (patch) | |
tree | f2acf81c173f32cd8b679d92911f4298440f896d /gdb/ChangeLog | |
parent | ce51845b10a95dc54e30c5df90706a3902d6d1ed (diff) | |
download | gdb-6d34c23688b9d441b6daba6dff56d6a4389bc058.zip gdb-6d34c23688b9d441b6daba6dff56d6a4389bc058.tar.gz gdb-6d34c23688b9d441b6daba6dff56d6a4389bc058.tar.bz2 |
Add support for Chill bitstring literals (e.h. H'FF00').
* ch-exp.y (match_bitstring_literal): Fix for proper endianness.
* expprint.c (print_subexp): Don't call error on OP_BITSTRING,
just print B'<unimlemented>'.
* gdbtypes.c (create_set_type): Fix bug in length calculation.
* valops.c, value.h (value_bitstring): New function.
* eval.c (evaluate_subexp): Implement support for OP_BITSTRING.
* ch-typeprint.c (chill_type_print_base): For TYPE_CODE_FUNC,
check that return type is non-void, and print in proper Chill syntax.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f016c50..a6730c0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,16 @@ +Mon Jan 23 13:11:46 1995 Per Bothner <bothner@kalessin.cygnus.com> + + Add support for Chill bitstring literals (e.h. H'FF00'). + * ch-exp.y (match_bitstring_literal): Fix for proper endianness. + * expprint.c (print_subexp): Don't call error on OP_BITSTRING, + just print B'<unimlemented>'. + * gdbtypes.c (create_set_type): Fix bug in length calculation. + * valops.c, value.h (value_bitstring): New function. + * eval.c (evaluate_subexp): Implement support for OP_BITSTRING. + + * ch-typeprint.c (chill_type_print_base): For TYPE_CODE_FUNC, + check that return type is non-void, and print in proper Chill syntax. + Mon Jan 23 12:20:34 1995 Rob Savoye <rob@darkstar.cygnus.com> * Makefile.in: Remove references to remote-mon.c. |