mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 10:40:50 +08:00
arm.c (thumb2_legitimate_index_p): Initialize val after checking for integers.
2009-06-04 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com> * config/arm/arm.c (thumb2_legitimate_index_p): Initialize val after checking for integers. From-SVN: r148170
This commit is contained in:
parent
4970671dca
commit
e07e020bbc
@ -1,3 +1,8 @@
|
||||
2009-06-04 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
|
||||
|
||||
* config/arm/arm.c (thumb2_legitimate_index_p): Initialize
|
||||
val after checking for integers.
|
||||
|
||||
2009-06-04 Uros Bizjak <ubizjak@gmail.com>
|
||||
|
||||
* config/i386/i386.h (X86_64_MS_REGPARM_MAX): Rename from
|
||||
|
@ -4266,15 +4266,17 @@ thumb2_legitimate_index_p (enum machine_mode mode, rtx index, int strict_p)
|
||||
|
||||
if (mode == DImode || mode == DFmode)
|
||||
{
|
||||
HOST_WIDE_INT val = INTVAL (index);
|
||||
/* ??? Can we assume ldrd for thumb2? */
|
||||
/* Thumb-2 ldrd only has reg+const addressing modes. */
|
||||
if (code != CONST_INT)
|
||||
if (code == CONST_INT)
|
||||
{
|
||||
HOST_WIDE_INT val = INTVAL (index);
|
||||
/* ??? Can we assume ldrd for thumb2? */
|
||||
/* Thumb-2 ldrd only has reg+const addressing modes. */
|
||||
/* ldrd supports offsets of +-1020.
|
||||
However the ldr fallback does not. */
|
||||
return val > -256 && val < 256 && (val & 3) == 0;
|
||||
}
|
||||
else
|
||||
return 0;
|
||||
|
||||
/* ldrd supports offsets of +-1020.
|
||||
However the ldr fallback does not. */
|
||||
return val > -256 && val < 256 && (val & 3) == 0;
|
||||
}
|
||||
|
||||
if (code == MULT)
|
||||
|
Loading…
x
Reference in New Issue
Block a user