aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2013-06-10 21:16:45 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2013-06-10 21:16:45 +0000
commit1116c8036097b6004b5e0134915a2c1a709626ce (patch)
tree9d23fdb3e45a044082a4156f4e07b15ab50f2a3d /gcc/config
parent296ce1f9689b0d7347d20140df3cc06238d9b7e2 (diff)
2013-06-04 Christophe Lyon <christophe.lyon@linaro.org>
Backport from trunk r199261. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/linaro/gcc-4_8-branch@199916 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/arm/arm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c
index 16cd8f18ca0..5a76f38e16e 100644
--- a/gcc/config/arm/arm.c
+++ b/gcc/config/arm/arm.c
@@ -25843,9 +25843,8 @@ arm_dwarf_register_span (rtx rtl)
nregs = GET_MODE_SIZE (GET_MODE (rtl)) / 8;
p = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (nregs));
- regno = (regno - FIRST_VFP_REGNUM) / 2;
for (i = 0; i < nregs; i++)
- XVECEXP (p, 0, i) = gen_rtx_REG (DImode, 256 + regno + i);
+ XVECEXP (p, 0, i) = gen_rtx_REG (DImode, regno + i);
return p;
}