diff options
author | Sergio Durigan Junior <sergiodj@redhat.com> | 2012-05-02 04:40:25 +0000 |
---|---|---|
committer | Sergio Durigan Junior <sergiodj@redhat.com> | 2012-05-02 04:40:25 +0000 |
commit | d71871bcbc24aab068e4469e6688a90a46e8d597 (patch) | |
tree | b7931fbe800c92e6c595f93d303d54bfa8e9f1df /gdb/stap-probe.c | |
parent | d61a2b6f2aac268ef1595cc827bf9e93cd2774ee (diff) | |
download | gdb-d71871bcbc24aab068e4469e6688a90a46e8d597.zip gdb-d71871bcbc24aab068e4469e6688a90a46e8d597.tar.gz gdb-d71871bcbc24aab068e4469e6688a90a46e8d597.tar.bz2 |
2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
* i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
variable.
* stap-probe.c (stap_parse_single_operand) <reg_suffix,
reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
(stap_parse_argument) <e>: Likewise.
(handle_stap_probe) <byte_order>: Likewise.
Diffstat (limited to 'gdb/stap-probe.c')
-rw-r--r-- | gdb/stap-probe.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gdb/stap-probe.c b/gdb/stap-probe.c index 13ba281..d1a38da 100644 --- a/gdb/stap-probe.c +++ b/gdb/stap-probe.c @@ -562,12 +562,7 @@ stap_parse_single_operand (struct stap_parse_info *p) /* Suffixes for the parser. */ const char *const_suffix = gdbarch_stap_integer_suffix (gdbarch); - const char *reg_suffix = gdbarch_stap_register_suffix (gdbarch); - const char *reg_ind_suffix - = gdbarch_stap_register_indirection_suffix (gdbarch); int const_suffix_len = const_suffix ? strlen (const_suffix) : 0; - int reg_suffix_len = reg_suffix ? strlen (reg_suffix) : 0; - int reg_ind_suffix_len = reg_ind_suffix ? strlen (reg_ind_suffix) : 0; /* We first try to parse this token as a "special token". */ if (gdbarch_stap_parse_special_token_p (gdbarch)) @@ -867,7 +862,6 @@ stap_parse_argument (const char **arg, struct type *atype, struct gdbarch *gdbarch) { struct stap_parse_info p; - volatile struct gdb_exception e; struct cleanup *back_to; /* We need to initialize the expression buffer, in order to begin @@ -1275,7 +1269,6 @@ handle_stap_probe (struct objfile *objfile, struct sdt_note *el, bfd *abfd = objfile->obfd; int size = bfd_get_arch_size (abfd) / 8; struct gdbarch *gdbarch = get_objfile_arch (objfile); - enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); struct type *ptr_type = builtin_type (gdbarch)->builtin_data_ptr; CORE_ADDR base_ref; const char *probe_args = NULL; |