Commit e58d3b41 by Jiong Wang Committed by Ramana Radhakrishnan

Fix Thumb2 testsuite fallout.

Applied for Jiong.

2014-07-30  Jiong Wang  <jiong.wang@arm.com>

	* config/arm/arm.c (arm_get_frame_offsets): Adjust condition for
	Thumb2.

From-SVN: r213304
parent 3fa699d1
2014-07-30 Jiong Wang <jiong.wang@arm.com>
* config/arm/arm.c (arm_get_frame_offsets): Adjust condition for
Thumb2.
2014-07-30 Tom Tromey <tromey@redhat.com>
PR c/59855
......
......@@ -20803,7 +20803,7 @@ arm_get_frame_offsets (void)
|| !(TARGET_LDRD && current_tune->prefer_ldrd_strd)))
{
reg = 3;
if (!(TARGET_LDRD && current_tune->prefer_ldrd_strd))
if (!TARGET_THUMB2)
prefer_callee_reg_p = true;
}
if (reg == -1
......
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