aboutsummaryrefslogtreecommitdiff
path: root/gcc/reg-stack.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2002-01-15 13:38:03 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-01-15 13:38:03 +0000
commit8e2e89f78ac366d74ac9a0e75afe056073589ef1 (patch)
tree15c488cfd0892394f03a3a880f8a6027ac7d4155 /gcc/reg-stack.c
parentb531087a3826b2cee37655af1725fe243fd898fb (diff)
downloadgcc-8e2e89f78ac366d74ac9a0e75afe056073589ef1.zip
gcc-8e2e89f78ac366d74ac9a0e75afe056073589ef1.tar.gz
gcc-8e2e89f78ac366d74ac9a0e75afe056073589ef1.tar.bz2
read-rtl.c: Fix formatting.
* read-rtl.c: Fix formatting. * real.c: Likewise. * recog.c: Likewise. * regclass.c: Likewise. * regmove.c: Likewise. * reg-stack.c: Likewise. * reload1.c: Likewise. * rtlanal.c: Likewise. From-SVN: r48870
Diffstat (limited to 'gcc/reg-stack.c')
-rw-r--r--gcc/reg-stack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c
index a1c4187..e7f69b0 100644
--- a/gcc/reg-stack.c
+++ b/gcc/reg-stack.c
@@ -871,7 +871,7 @@ remove_regno_note (insn, note, regno)
{
rtx *note_link, this;
- note_link = &REG_NOTES(insn);
+ note_link = &REG_NOTES (insn);
for (this = *note_link; this; this = XEXP (this, 1))
if (REG_NOTE_KIND (this) == note
&& REG_P (XEXP (this, 0)) && REGNO (XEXP (this, 0)) == regno)
@@ -2223,7 +2223,7 @@ subst_stack_regs (insn, regstack)
since the form of the newly emitted pop insn references the reg,
making it no longer `unset'. */
- note_link = &REG_NOTES(insn);
+ note_link = &REG_NOTES (insn);
for (note = *note_link; note; note = XEXP (note, 1))
if (REG_NOTE_KIND (note) == REG_UNUSED && STACK_REG_P (XEXP (note, 0)))
{