From: John David Anglin Date: Tue, 25 Feb 2014 00:48:47 +0000 (+0000) Subject: pa.c (pa_output_move_double): Don't valididate when adjusting offsetable addresses. X-Git-Tag: upstream/12.2.0~64524 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=325fefe0464b35ded3747e5a77f1e005562392ee;p=platform%2Fupstream%2Fgcc.git pa.c (pa_output_move_double): Don't valididate when adjusting offsetable addresses. * config/pa/pa.c (pa_output_move_double): Don't valididate when adjusting offsetable addresses. From-SVN: r208101 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9c1faac..8273d2a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2014-02-24 John David Anglin + + * config/pa/pa.c (pa_output_move_double): Don't valididate when + adjusting offsetable addresses. + 2014-02-24 Guozhi Wei * sparseset.h (sparseset_pop): Fix the wrong index. diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 1907401..fb698d2 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -2627,14 +2627,14 @@ pa_output_move_double (rtx *operands) if (optype0 == REGOP) latehalf[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1); else if (optype0 == OFFSOP) - latehalf[0] = adjust_address (operands[0], SImode, 4); + latehalf[0] = adjust_address_nv (operands[0], SImode, 4); else latehalf[0] = operands[0]; if (optype1 == REGOP) latehalf[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1); else if (optype1 == OFFSOP) - latehalf[1] = adjust_address (operands[1], SImode, 4); + latehalf[1] = adjust_address_nv (operands[1], SImode, 4); else if (optype1 == CNSTOP) split_double (operands[1], &operands[1], &latehalf[1]); else