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/coffread.c | |
parent | 01add95bed9afd5e7815439c3967db976be53f80 (diff) | |
download | gdb-24b21115f522cd0fbe55986cd914a593576294ef.zip gdb-24b21115f522cd0fbe55986cd914a593576294ef.tar.gz gdb-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/coffread.c')
-rw-r--r-- | gdb/coffread.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gdb/coffread.c b/gdb/coffread.c index b527f93..0135363 100644 --- a/gdb/coffread.c +++ b/gdb/coffread.c @@ -968,25 +968,25 @@ coff_symtab_read (minimal_symbol_reader &reader, symbol lookup which returned no match. */ break; } - else if (cs->c_secnum == N_ABS) - { - /* Use the correct minimal symbol type (and don't - relocate) for absolute values. */ - ms_type = mst_abs; - sec = cs_to_section (cs, objfile); - tmpaddr = cs->c_value; - } + else if (cs->c_secnum == N_ABS) + { + /* Use the correct minimal symbol type (and don't + relocate) for absolute values. */ + ms_type = mst_abs; + sec = cs_to_section (cs, objfile); + tmpaddr = cs->c_value; + } else { asection *bfd_section = cs_to_bfd_section (cs, objfile); sec = cs_to_section (cs, objfile); tmpaddr = cs->c_value; - /* Statics in a PE file also get relocated. */ - if (cs->c_sclass == C_EXT - || cs->c_sclass == C_THUMBEXTFUNC - || cs->c_sclass == C_THUMBEXT - || (pe_file && (cs->c_sclass == C_STAT))) + /* Statics in a PE file also get relocated. */ + if (cs->c_sclass == C_EXT + || cs->c_sclass == C_THUMBEXTFUNC + || cs->c_sclass == C_THUMBEXT + || (pe_file && (cs->c_sclass == C_STAT))) offset = objfile->section_offsets[sec]; if (bfd_section->flags & SEC_CODE) |