Commit 0dac3001 by Kai Tietz Committed by Kai Tietz

recog.c (peep2_attempt): Copy SIBLING_CALL_P flag from old call-instruction.

	* recog.c (peep2_attempt): Copy SIBLING_CALL_P flag
	from old call-instruction.

From-SVN: r211213
parent 9d548dfb
2014-06-04 Kai Tietz <ktietz@redhat.com>
* recog.c (peep2_attempt): Copy SIBLING_CALL_P flag
from old call-instruction.
2014-06-04 Bin Cheng <bin.cheng@arm.com>
* config/aarch64/aarch64.c (aarch64_classify_address)
......
......@@ -3461,6 +3461,7 @@ peep2_attempt (basic_block bb, rtx insn, int match_len, rtx attempt)
CALL_INSN_FUNCTION_USAGE (new_insn)
= CALL_INSN_FUNCTION_USAGE (old_insn);
SIBLING_CALL_P (new_insn) = SIBLING_CALL_P (old_insn);
for (note = REG_NOTES (old_insn);
note;
......
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