Commit c0c46dc6 by Jan Hubicka Committed by Jan Hubicka

pa.c (pa_expand_compare_and_swap_loop): Update call of emit_cmp_and_jump_insns.

	* pa.c (pa_expand_compare_and_swap_loop): Update call of
	emit_cmp_and_jump_insns.

From-SVN: r249862
parent 5a650977
2017-06-29 Jan Hubicka <hubicka@ucw.cz>
* pa.c (pa_expand_compare_and_swap_loop): Update call of
emit_cmp_and_jump_insns.
2017-06-29 Jan Hubicka <hubicka@ucw.cz>
PR ipa/81261
* tree-inline.c (expand_call_inline): Combine profile statuses.
......
......@@ -10723,7 +10723,8 @@ pa_expand_compare_and_swap_loop (rtx mem, rtx old_reg, rtx new_reg, rtx seq)
/* Mark this jump predicted not taken. */
emit_cmp_and_jump_insns (success, const0_rtx, EQ, const0_rtx,
GET_MODE (success), 1, label, 0);
GET_MODE (success), 1, label,
profile_probability::guessed_never ());
return true;
}
......
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