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
This commit is contained in:
Jakub Jelinek 2017-09-04 10:10:51 +02:00 committed by Jakub Jelinek
parent 8eb587b63c
commit 40008742c5
2 changed files with 5 additions and 2 deletions

View File

@ -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>

View File

@ -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
######################################################################