diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-05-27 15:18:49 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-05-27 15:18:49 -0400 |
commit | 24b21115f522cd0fbe55986cd914a593576294ef (patch) | |
tree | 6f2f71d9ede68e21d0371cc5db25b50d64de53af /gdb/hppa-tdep.c | |
parent | 01add95bed9afd5e7815439c3967db976be53f80 (diff) | |
download | binutils-24b21115f522cd0fbe55986cd914a593576294ef.zip binutils-24b21115f522cd0fbe55986cd914a593576294ef.tar.gz binutils-24b21115f522cd0fbe55986cd914a593576294ef.tar.bz2 |
gdb: fix tab after space indentation issues
I spotted some indentation issues where we had some spaces followed by
tabs at beginning of line, that I wanted to fix. So while at it, I did
a quick grep to find and fix all I could find.
gdb/ChangeLog:
* Fix tab after space indentation issues throughout.
Change-Id: I1acb414dd9c593b474ae2b8667496584df4316fd
Diffstat (limited to 'gdb/hppa-tdep.c')
-rw-r--r-- | gdb/hppa-tdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index 70a518e..21e58f3 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -2156,9 +2156,9 @@ hppa_frame_cache (struct frame_info *this_frame, void **this_cache) if (get_frame_pc (this_frame) >= prologue_end && (u->Save_SP || u->alloca_frame) && fp != 0) { - cache->base = fp; + cache->base = fp; - if (hppa_debug) + if (hppa_debug) fprintf_unfiltered (gdb_stdlog, " (base=%s) [frame pointer]", paddress (gdbarch, cache->base)); } @@ -2976,7 +2976,7 @@ hppa_skip_trampoline_code (struct frame_info *frame, CORE_ADDR pc) if (in_plt_section (pc)) { /* Sanity check: are we pointing to the PLT stub? */ - if (!hppa_match_insns (gdbarch, pc, hppa_plt_stub, insn)) + if (!hppa_match_insns (gdbarch, pc, hppa_plt_stub, insn)) { warning (_("Cannot resolve PLT stub at %s."), paddress (gdbarch, pc)); |