diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/regrename.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bc0f543..14a61f1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 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> diff --git a/gcc/regrename.c b/gcc/regrename.c index 701e078..60157dc 100644 --- a/gcc/regrename.c +++ b/gcc/regrename.c @@ -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; |