diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2019-03-26 19:34:06 +0000 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2019-04-29 22:01:07 +0100 |
commit | 721b08c68679ad4058bfa7ae73811e6f9e845cfd (patch) | |
tree | bf70fdf2b5660bca12c0b4574df9f928fa50616f /gdb/language.h | |
parent | fc913e53c353218ba1a9efa423c08767691a682a (diff) | |
download | gdb-721b08c68679ad4058bfa7ae73811e6f9e845cfd.zip gdb-721b08c68679ad4058bfa7ae73811e6f9e845cfd.tar.gz gdb-721b08c68679ad4058bfa7ae73811e6f9e845cfd.tar.bz2 |
gdb: Introduce new language field la_struct_too_deep_ellipsis
This commit is preparation work for a later commit, and by itself
makes no user visible change to GDB. I've split this work into a
separate commit in order to make code review easier.
This commit adds a new field 'la_struct_too_deep_ellipsis' to the
language struct, this string will be used in the next commit to print
a language specific string from within the generic value printing
code.
In this commit I add the new field and initialise it for each
language, however at this stage the new field is never used.
gdb/ChangeLog:
* language.h (struct language_defn) <la_struct_too_deep_ellipsis>:
New field.
* ada-lang.c (ada_language_defn): Initialise new field.
* c-lang.c (c_language_defn): Likewise.
(cplus_language_defn): Likewise.
(asm_language_defn): Likewise.
(minimal_language_defn): Likewise.
* d-lang.c (d_language_defn): Likewise.
* f-lang.c (f_language_defn): Likewise.
* go-lang.c (go_language_defn): Likewise.
* language.c (unknown_language_defn): Likewise.
(auto_language_defn): Likewise.
* m2-lang.c (m2_language_defn): Likewise.
* objc-lang.c (objc_language_defn): Likewise.
* opencl-lang.c (opencl_language_defn): Likewise.
* p-lang.c (pascal_language_defn): Likewise.
* rust-lang.c (rust_language_defn): Likewise.
Diffstat (limited to 'gdb/language.h')
-rw-r--r-- | gdb/language.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/language.h b/gdb/language.h index 3e0bc9d..261f5a3 100644 --- a/gdb/language.h +++ b/gdb/language.h @@ -449,6 +449,12 @@ struct language_defn struct gdbarch *gdbarch, const struct block *expr_block, CORE_ADDR expr_pc); + + /* This string is used by the 'set print max-depth' setting. When GDB + replaces a struct or union (during value printing) that is "too + deep" this string is displayed instead. */ + const char *la_struct_too_deep_ellipsis; + }; /* Pointer to the language_defn for our current language. This pointer |