Fix -Wmisleading-indentation warning in gcc/regrename.c

../../../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
This commit is contained in:
David Malcolm 2015-12-10 15:13:49 +00:00 committed by David Malcolm
parent d47ddea195
commit 5b1fb88a8a
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
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.

View File

@ -1360,8 +1360,8 @@ scan_rtx_address (rtx_insn *insn, rtx *loc, enum reg_class cl,
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;