diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2020-10-20 13:41:18 +0100 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2020-12-23 20:53:14 +0000 |
commit | 76ca72bc5b72ac0bbab239bda41cd61f6cb7d051 (patch) | |
tree | b2d64c1c54b6af4d5d0d8dcf2bcc64e8a4c000be /gdb/ChangeLog | |
parent | c5ee319e6cc7a02d35871896e8205e1f782fbc00 (diff) | |
download | gdb-76ca72bc5b72ac0bbab239bda41cd61f6cb7d051.zip gdb-76ca72bc5b72ac0bbab239bda41cd61f6cb7d051.tar.gz gdb-76ca72bc5b72ac0bbab239bda41cd61f6cb7d051.tar.bz2 |
gdb: remove LA_EMIT_CHAR macro
Now that every use of the LA_EMIT_CHAR macro is within a language_defn
member function we can simply call the emitchar member function
directly instead of using the LA_EMIT_CHAR macro.
If we are ever inside a language object, for example, cplus_language,
while current_language points at something other than cplus_language
then this commit will result in a change in behaviour. However, I
believe if we did have such a difference then this would be a bug in
GDB. AS such I'm going to claim there _should_ be no user visible
changes from this commit.
gdb/ChangeLog:
* c-lang.c (language_defn::printchar): Call emitchar, not
LA_EMIT_CHAR.
* f-lang.h (f_language::printchar): Likewise.
* language.h (LA_EMIT_CHAR): Delete macro.
* rust-lang.c (rust_language::printchar): Call emitchar, not
LA_EMIT_CHAR.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7c52f9b..d751b0d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,14 @@ 2020-12-23 Andrew Burgess <andrew.burgess@embecosm.com> + * c-lang.c (language_defn::printchar): Call emitchar, not + LA_EMIT_CHAR. + * f-lang.h (f_language::printchar): Likewise. + * language.h (LA_EMIT_CHAR): Delete macro. + * rust-lang.c (rust_language::printchar): Call emitchar, not + LA_EMIT_CHAR. + +2020-12-23 Andrew Burgess <andrew.burgess@embecosm.com> + * c-lang.c (c_printchar): Rename to... (language_defn::printchar): ...this. * c-lang.h (c_printchar): Delete declaration. |