Commit 00fc09e1 by Jim Wilson Committed by Jim Wilson

Fix x86 libio -O2 miscompilation problem.

	* i386.c (ix86_expand_epilogue): Emit blockage instruction when pic.

From-SVN: r14992
parent 2601ebca
Thu Aug 28 13:01:43 1997 Jim Wilson <wilson@cygnus.com>
* i386.c (ix86_expand_epilogue): Emit blockage instruction when pic.
Thu Aug 28 07:03:15 1997 Jeffrey A Law (law@cygnus.com)
* version.c: Bump for latest snapshot.
......
......@@ -2128,6 +2128,16 @@ ix86_expand_epilogue ()
xops[2] = stack_pointer_rtx;
/* When -fpic, we must emit a scheduling barrier, so that the instruction
that restores %ebx (which is PIC_OFFSET_TABLE_REGNUM), does not get
moved before any instruction which implicitly uses the got. This
includes any instruction which uses a SYMBOL_REF or a LABEL_REF.
Alternatively, this could be fixed by making the dependence on the
PIC_OFFSET_TABLE_REGNUM explicit in the RTL. */
if (flag_pic)
emit_insn (gen_blockage ());
if (nregs > 1 || ! frame_pointer_needed)
{
if (frame_pointer_needed)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment