diff options
author | George Barrett <bob@bob131.so> | 2021-04-29 03:32:37 +1000 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-05-12 12:35:36 +0100 |
commit | 97cef6b7b79c22a3cc14ef369c1dc09a8bcca357 (patch) | |
tree | fbe15647862a44d89d93cf12e0431bb40a4a38a9 /gdb/NEWS | |
parent | 84139c58642a8a6b857cad1c50420264452882f9 (diff) | |
download | gdb-97cef6b7b79c22a3cc14ef369c1dc09a8bcca357.zip gdb-97cef6b7b79c22a3cc14ef369c1dc09a8bcca357.tar.gz gdb-97cef6b7b79c22a3cc14ef369c1dc09a8bcca357.tar.bz2 |
Guile: improved rvalue reference support
Adds a couple of missing bits to the Guile API to make C++11 rvalue
reference values and types usable from Guile scripts.
gdb/ChangeLog:
* guile/scm-type.c (type_integer_constants): Add binding for
TYPE_CODE_RVALUE_REF.
* guile/scm-value.c (gdbscm_value_referenced_value): Handle
dereferencing of rvalue references.
* NEWS (Guile API): Note improvements in rvalue reference support.
gdb/doc/ChangeLog:
* guile.texi (Types In Guile): Add documentation for
TYPE_CODE_RVALUE_REF.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r-- | gdb/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -200,6 +200,13 @@ QMemTags Request the remote to store the specified allocation tags to the requested memory range. +* Guile API + + ** Improved support for rvalue reference values: + TYPE_CODE_RVALUE_REF is now exported as part of the API and the + value-referenced-value procedure now handles rvalue reference + values. + *** Changes in GDB 10 * There are new feature names for ARC targets: "org.gnu.gdb.arc.core" |