arm.c (offset_ok_for_ldrd_strd): Return false for Thumb1.

gcc/

2012-10-23  Greta Yorsh  <Greta.Yorsh@arm.com>

	* config/arm/arm.c (offset_ok_for_ldrd_strd): Return false for
	Thumb1.

From-SVN: r192720
This commit is contained in:
Greta Yorsh 2012-10-23 17:23:49 +01:00 committed by Greta Yorsh
parent 55a2c3226a
commit 85fc19ad7e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-10-23 Greta Yorsh <Greta.Yorsh@arm.com>
* config/arm/arm.c (offset_ok_for_ldrd_strd): Return false for
Thumb1.
2012-10-23 Vladimir Makarov <vmakarov@redhat.com>
* dbxout.c (dbxout_symbol_location): Pass new argument to

View File

@ -12209,7 +12209,7 @@ offset_ok_for_ldrd_strd (HOST_WIDE_INT offset)
else if (TARGET_ARM)
max_offset = 255;
else
gcc_unreachable ();
return false;
return ((offset <= max_offset) && (offset >= -max_offset));
}