gdbhooks.py (OptMachineModePrinter.to_string): Use 8 spaces instead of tab.
authorJakub Jelinek <jakub@redhat.com>
Mon, 4 Sep 2017 08:10:51 +0000 (10:10 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Mon, 4 Sep 2017 08:10:51 +0000 (10:10 +0200)
* gdbhooks.py (OptMachineModePrinter.to_string): Use 8 spaces
instead of tab.

From-SVN: r251640

gcc/ChangeLog
gcc/gdbhooks.py

index 1c2642d1508a584900648a3f5c5eb2c4e2c088ac..4d1c041acaa2b3a0c995f03afaf08f35c13f78a4 100644 (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>
index 1b3f95361b6f415c4ba2646a321fc35178ccbfbb..e277121b123c5fc126a2be67ae78b7d8670f8e0e 100644 (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
 
 ######################################################################