Commit be98e709 by Stan Cox

(override_options): Don't thread the prologue if profiling.

From-SVN: r12681
parent 8584b866
......@@ -310,7 +310,8 @@ override_options ()
flag_omit_frame_pointer = 1;
/* pic references don't explicitly mention pic_offset_table_rtx */
if (flag_pic)
/* code threaded into the prologue may conflict with profiling */
if (flag_pic || profile_flag || profile_block_flag)
target_flags &= ~MASK_SCHEDULE_PROLOGUE;
}
......@@ -3619,6 +3620,7 @@ output_float_compare (insn, operands)
xops[0] = operands[0];
xops[1] = operands[1];
xops[2] = operands[0];
output_asm_insn (strcat (buf, AS2 (%z1,%y1,%2)), xops);
RET;
}
......
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