diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2020-08-04 17:13:40 +0100 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2020-09-16 11:04:04 +0100 |
commit | 0e25e7672778082e2934c378403ad8b57249d80f (patch) | |
tree | c08caf151903117bb2faaf469544586e8147d7d1 /gdb/d-lang.c | |
parent | b7c6e27dbbbbe678b2e2f0bf617605e055e1b378 (diff) | |
download | binutils-0e25e7672778082e2934c378403ad8b57249d80f.zip binutils-0e25e7672778082e2934c378403ad8b57249d80f.tar.gz binutils-0e25e7672778082e2934c378403ad8b57249d80f.tar.bz2 |
gdb: Remove language_data struct
The language_data type, from which language_defn inherits, is now
empty, and this commit removes it.
Each language is updated to no longer create and use a language_data
struct.
There should be no user visible changes after this commit.
gdb/ChangeLog:
* ada-lang.c (ada_language_data): Delete.
(ada_language): Remove references to ada_language_data.
* c-lang.c (c_language_data): Delete.
(c_language): Remove references to c_language_data.
(cplus_language_data): Delete.
(cplus_language): Remove references to cplus_language_data.
(asm_language_data): Delete.
(asm_language): Remove references to asm_language_data.
(minimal_language_data): Delete.
(minimal_language): Remove references to minimal_language_data.
* d-lang.c (d_language_data): Delete.
(d_language): Remove references to d_language_data.
* f-lang.c (f_language_data): Delete.
(f_language): Remove references to f_language_data.
* go-lang.c (go_language_data): Delete.
(go_language): Remove references to go_language_data.
* language.c (unknown_language_data): Delete.
(unknown_language): Remove references to unknown_language_data.
(auto_language_data): Delete.
(auto_language): Remove references to auto_language_data.
* language.h (language_data): Delete struct.
(language_defn): No longer inherit from language_data.
* m2-lang.c (m2_language_data): Delete.
(m2_language): Remove references to m2_language_data.
* objc-lang.c (objc_language_data): Delete.
(objc_language): Remove references to objc_language_data.
* opencl-lang.c (opencl_language_data): Delete.
(opencl_language): Remove references to opencl_language_data.
* p-lang.c (pascal_language_data): Delete.
(pascal_language): Remove references to pascal_language_data.
* rust-lang.c (rust_language_data): Delete.
(rust_language): Remove references to rust_language_data.
Diffstat (limited to 'gdb/d-lang.c')
-rw-r--r-- | gdb/d-lang.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gdb/d-lang.c b/gdb/d-lang.c index f996786..f9f1a66 100644 --- a/gdb/d-lang.c +++ b/gdb/d-lang.c @@ -124,19 +124,13 @@ enum d_primitive_types { nr_d_primitive_types }; -/* Constant data that describes the D language. */ - -extern const struct language_data d_language_data = -{ -}; - /* Class representing the D language. */ class d_language : public language_defn { public: d_language () - : language_defn (language_d, d_language_data) + : language_defn (language_d) { /* Nothing. */ } /* See language.h. */ |