diff options
author | Jakub Jelinek <jakub@redhat.com> | 2017-09-04 10:10:51 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2017-09-04 10:10:51 +0200 |
commit | 40008742c5f7c84ddd16f7da562bebca1a179d4b (patch) | |
tree | 4814f5cc8ca18b4ccdaab8c6c226afa52cac77ca | |
parent | 8eb587b63c03b3575b6e270f4ed66f6e68a5d14c (diff) | |
download | gcc-40008742c5f7c84ddd16f7da562bebca1a179d4b.zip gcc-40008742c5f7c84ddd16f7da562bebca1a179d4b.tar.gz gcc-40008742c5f7c84ddd16f7da562bebca1a179d4b.tar.bz2 |
gdbhooks.py (OptMachineModePrinter.to_string): Use 8 spaces instead of tab.
* gdbhooks.py (OptMachineModePrinter.to_string): Use 8 spaces
instead of tab.
From-SVN: r251640
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/gdbhooks.py | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1c2642d..4d1c041 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2017-09-04 Jakub Jelinek <jakub@redhat.com> + * gdbhooks.py (OptMachineModePrinter.to_string): Use 8 spaces + instead of tab. + * lra-remat.c (reg_overlap_for_remat_p): Fix a pasto. 2017-09-04 Richard Sandiford <richard.sandiford@linaro.org> diff --git a/gcc/gdbhooks.py b/gcc/gdbhooks.py index 1b3f953..e277121 100644 --- a/gcc/gdbhooks.py +++ b/gcc/gdbhooks.py @@ -438,8 +438,8 @@ class OptMachineModePrinter: def to_string (self): name = str(self.gdbval['m_mode']) - if name == 'E_VOIDmode': - return '<None>' + if name == 'E_VOIDmode': + return '<None>' return name[2:] if name.startswith('E_') else name ###################################################################### |