diff options
author | Sergio Durigan Junior <sergiodj@redhat.com> | 2013-12-28 19:20:58 -0200 |
---|---|---|
committer | Sergio Durigan Junior <sergiodj@redhat.com> | 2013-12-28 19:20:58 -0200 |
commit | 8d85bacb91f5e50baa8155598a9e5521db2fafd1 (patch) | |
tree | 6ce9b6cfb16ec1e95810cff6de610fff522fe4b6 /gdb/ChangeLog | |
parent | 08248ca9fe11040e9a4126cefebc5023d1d67222 (diff) | |
download | gdb-8d85bacb91f5e50baa8155598a9e5521db2fafd1.zip gdb-8d85bacb91f5e50baa8155598a9e5521db2fafd1.tar.gz gdb-8d85bacb91f5e50baa8155598a9e5521db2fafd1.tar.bz2 |
Extend handling of immediates on ARM's SystemTap SDT probe support
Continuing my series of fixes on the SystemTap SDT support for the
ARM/AArch64 architectures, this patch now extends how ARM's SDT specific
parser handles literal numbers (immediates).
Currently, it only accepts "#" as the prefix. However, according to
"info '(as) ARM-Chars'", expressions can also have "$" and nothing as a
prefix. This patch extends the parser to accept those options.
2013-12-28 Sergio Durigan Junior <sergiodj@redhat.com>
* arm-linux-tdep.c (arm_stap_is_single_operand): Accept "$" as a
literal prefix. Also accept no prefix at all.
(arm_stap_parse_special_token): Likewise.
(arm_linux_init_abi): Likewise.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c6f37e5..02db708 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,12 @@ 2013-12-28 Sergio Durigan Junior <sergiodj@redhat.com> + * arm-linux-tdep.c (arm_stap_is_single_operand): Accept "$" as a + literal prefix. Also accept no prefix at all. + (arm_stap_parse_special_token): Likewise. + (arm_linux_init_abi): Likewise. + +2013-12-28 Sergio Durigan Junior <sergiodj@redhat.com> + PR tdep/15653 * NEWS: Mention SystemTap SDT probe support for AArch64 GNU/Linux. * aarch64-linux-tdep.c: Include necessary headers for parsing of |