../../../src/gcc/regrename.c: In function ‘void scan_rtx_address(rtx_insn*, rtx_def**, reg_class, scan_actions, machine_mode, addr_space_t)’:
../../../src/gcc/regrename.c:1314:7: error: statement is indented as if it were guarded by... [-Werror=misleading-indentation]
break;
^
../../../src/gcc/regrename.c:1311:5: note: ...this ‘if’ clause, but it is not
if (!AUTO_INC_DEC)
^
gcc/ChangeLog:
* regrename.c (scan_rtx_address): Fix indentation.
From-SVN: r231520
2015-12-10 David Malcolm <dmalcolm@redhat.com>
+ * regrename.c (scan_rtx_address): Fix indentation.
+
+2015-12-10 David Malcolm <dmalcolm@redhat.com>
+
* function.c (locate_and_pad_parm): Fix indentation.
2015-12-10 Richard Biener <rguenther@suse.de>
case PRE_MODIFY:
/* If the target doesn't claim to handle autoinc, this must be
something special, like a stack push. Kill this chain. */
- if (!AUTO_INC_DEC)
- action = mark_all_read;
+ if (!AUTO_INC_DEC)
+ action = mark_all_read;
break;