summaryrefslogtreecommitdiff
path: root/gcc/reg-stack.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2002-01-15 13:38:03 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2002-01-15 13:38:03 +0000
commit337d789b57c5fbe86822b3dd9d6b7fad8c7cb33b (patch)
tree15c488cfd0892394f03a3a880f8a6027ac7d4155 /gcc/reg-stack.c
parent039c27d6032202129054360627a0db5b64c04bd5 (diff)
downloadgcc-337d789b57c5fbe86822b3dd9d6b7fad8c7cb33b.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48870 138bc75d-0d04-0410-961f-82ee72b054a4
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 a1c4187f6fc..e7f69b0e786 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)))
{