aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
authorJeff Law <law@gcc.gnu.org>1998-10-19 14:23:44 -0600
committerJeff Law <law@gcc.gnu.org>1998-10-19 14:23:44 -0600
commit18e765cbda8f41f36ca36ee219e2d53e3b821fba (patch)
tree342a09e2dec122b2933a81fc78272e3040cf0cf1 /gcc/function.c
parentea4d3ff6e081929a77d3306137d175505106de58 (diff)
[multiple changes]
1998-10-18 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl> * reorg.c (steal_delay_list_from_target) Check for insns that modify the condition codes and effect the direction of the jump in the sequence. Sat Oct 17 13:09:09 1998 Graham <grahams@rcp.co.uk> * function.c (purge_addressof_1): Replace call to emit_insns_before() with emit_insn_before(). From-SVN: r23189
Diffstat (limited to 'gcc/function.c')
-rw-r--r--gcc/function.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c
index 148acc0e4fb..e7f6afacdb5 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -2860,7 +2860,7 @@ purge_addressof_1 (loc, insn, force, store)
insns = gen_sequence ();
end_sequence ();
- emit_insns_before (insns, insn);
+ emit_insn_before (insns, insn);
return;
}
else if (code == MEM && GET_CODE (XEXP (x, 0)) == ADDRESSOF && ! force)