Commit 40008742 by Jakub Jelinek Committed by Jakub Jelinek

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
parent 8eb587b6
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>
......
......@@ -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
######################################################################
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment