Commit dc2d3c67 by Yufeng Zhang Committed by Yufeng Zhang

aarch64.c (aarch64_expand_prologue): add the missing argument 'Pmode' to the 'plus_constant' call.

gcc/ChangeLog

2012-11-07  Yufeng Zhang  <yufeng.zhang@arm.com>

	* config/aarch64/aarch64.c (aarch64_expand_prologue): add the missing
	argument 'Pmode' to the 'plus_constant' call.

From-SVN: r193299
parent 2c9561b5
2012-11-07 Yufeng Zhang <yufeng.zhang@arm.com>
* config/aarch64/aarch64.c (aarch64_expand_prologue): add the missing
argument 'Pmode' to the 'plus_constant' call.
2012-11-07 Martin Jambor <mjambor@suse.cz>
PR tree-optimization/53787
......@@ -2079,7 +2079,8 @@ aarch64_expand_epilogue (bool for_sibcall)
RTX_FRAME_RELATED_P (XVECEXP (PATTERN (insn), 0, 2)) = 1;
add_reg_note (insn, REG_CFA_ADJUST_CFA,
(gen_rtx_SET (Pmode, stack_pointer_rtx,
plus_constant (cfa_reg, offset))));
plus_constant (Pmode, cfa_reg,
offset))));
}
/* The first part of a frame-related parallel insn
......
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