diff options
author | Fred Fish <fnf@specifix.com> | 1992-11-18 22:49:38 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-11-18 22:49:38 +0000 |
commit | 2e66cf7d6d84711159b3091ba693a969e6ecb50b (patch) | |
tree | e4f269dbd3e59bc665c00c9f4b073ebcd9cb352b /gdb/m2-exp.y | |
parent | e1b91f0b1afcb9f7263d4b45decc45ffd74b4bfe (diff) | |
download | gdb-2e66cf7d6d84711159b3091ba693a969e6ecb50b.zip gdb-2e66cf7d6d84711159b3091ba693a969e6ecb50b.tar.gz gdb-2e66cf7d6d84711159b3091ba693a969e6ecb50b.tar.bz2 |
* language.h (language_format_info): New structure to bundle
local formatting information.
* language.h (language_defn): Replace individual format info
with language_format_info structs.
* language.h (local_*_format, local_*_format_prefix,
local_*_format_specifier, local_*_format_suffix): New macros
for binary/octal/decimal/hex formats to access info elements.
* c-exp.y (c_language_defn): Update for new format handling.
* m2-exp.y (m2_language_defn): Update for new format handling.
* dbxread.c (language.h): Include for partial-stab.h use.
* defs.h (local_hex_format, local_hex_format_custom,
local_hex_string, local_hex_string_custom): Move to language.h.
* language.c (local_hex_format_custom, local_hex_string,
local_hex_string_custom, local_octal_format_custom): Use new
format handling.
* language.c (unknown_language_defn, auto_language_defn,
local_language_defn): Update for new format handling.
* printcmd.c (print_scalar_formatted): Use new macros
to access decimal and binary format info for printing.
**** start-sanitize-chill ****
* c-exp.y (chill_language_defn): Update for new format handling.
* ch-exp.y (CHARACTER_LITERAL): Add support to yylex.
* ch-exp.y (match_integer_literal): Add function.
* ch-exp.y (builtin_type_chill_char): Add definition.
* gdbtypes.h (builtin_type_chill_char): Add declaration.
**** end-sanitize-chill ****
Diffstat (limited to 'gdb/m2-exp.y')
-rw-r--r-- | gdb/m2-exp.y | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gdb/m2-exp.y b/gdb/m2-exp.y index 3f83323..bfaf264 100644 --- a/gdb/m2-exp.y +++ b/gdb/m2-exp.y @@ -1228,10 +1228,12 @@ const struct language_defn m2_language_defn = { m2_parse, /* parser */ m2_error, /* parser error function */ &builtin_type_m2_int, /* longest signed integral type */ - &builtin_type_m2_card, /* longest unsigned integral type */ - &builtin_type_m2_real, /* longest floating point type */ - "0%XH", "0%", "XH", /* Hex format string, prefix, suffix */ - "%oB", "%", "oB", /* Octal format string, prefix, suffix */ + &builtin_type_m2_card, /* longest unsigned integral type */ + &builtin_type_m2_real, /* longest floating point type */ + {"", "", "", ""}, /* Binary format info */ + {"%oB", "", "o", "B"}, /* Octal format info */ + {"%d", "", "d", ""}, /* Decimal format info */ + {"0%XH", "0", "X", "H"}, /* Hex format info */ m2_op_print_tab, /* expression operators for printing */ LANG_MAGIC }; |