diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2019-11-26 12:12:01 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2019-11-26 14:29:20 -0500 |
commit | cb8c24b66178a2b7efcfa396ac54fb7252493d9c (patch) | |
tree | 1b74af88b70102fcc90db226e7e7ee1d98407538 /gdb/hppa-tdep.c | |
parent | 781597ff9a5d876153b38a72bc88632463352208 (diff) | |
download | binutils-cb8c24b66178a2b7efcfa396ac54fb7252493d9c.zip binutils-cb8c24b66178a2b7efcfa396ac54fb7252493d9c.tar.gz binutils-cb8c24b66178a2b7efcfa396ac54fb7252493d9c.tar.bz2 |
Make a bunch of functions static
All these functions are only used in their respective files, they are
missing the static keyword, add them.
gdb/ChangeLog:
* arc-tdep.c (arc_insn_get_memory_base_reg): Make static.
(arc_insn_get_memory_offset): Likewise.
(arc_insn_dump): Likewise.
* cp-support.c (test_cp_symbol_name_matches): Likewise.
* csky-linux-tdep.c (csky_supply_fregset): Likewise.
* dictionary.c (dict_iterator_next): Likewise.
(dict_iter_match_first): Likewise.
(dict_iter_match_next): Likewise.
* f-lang.c (evaluate_subexp_f): Likewise.
* hppa-tdep.c (hppa_read_pc): Likewise.
* i386-tdep.c (i386_floatformat_for_type): Likewise.
* parse.c (write_exp_elt_msym): Likewise.
* ppc-linux-tdep.c (ppc_floatformat_for_type): Likewise.
* remote.c (remote_packet_size): Likewise.
(remote_notif_stop_parse): Likewise.
* rs6000-aix-tdep.c (aix_sighandle_frame_sniffer): Likewise.
* s12z-tdep.c (s12z_disassemble_info): Likewise.
* source.c (prepare_path_for_appending): Likewise.
* sparc64-linux-tdep.c
(sparc64_linux_handle_segmentation_fault); Likewise.
* stack.c (frame_selection_by_function_completer): Likewise.
Change-Id: I18e187ad279075b961e3e22e5b034f5c0f6188f0
Diffstat (limited to 'gdb/hppa-tdep.c')
-rw-r--r-- | gdb/hppa-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index 8e4168d..70f0658 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -1296,7 +1296,7 @@ hppa64_frame_align (struct gdbarch *gdbarch, CORE_ADDR addr) return align_up (addr, 16); } -CORE_ADDR +static CORE_ADDR hppa_read_pc (readable_regcache *regcache) { ULONGEST ipsw; |