pa.c (pa_output_move_double): Don't valididate when adjusting offsetable addresses.
authorJohn David Anglin <danglin@gcc.gnu.org>
Tue, 25 Feb 2014 00:48:47 +0000 (00:48 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Tue, 25 Feb 2014 00:48:47 +0000 (00:48 +0000)
* config/pa/pa.c (pa_output_move_double): Don't valididate when
adjusting offsetable addresses.

From-SVN: r208101

gcc/ChangeLog
gcc/config/pa/pa.c

index 9c1faac..8273d2a 100644 (file)
@@ -1,3 +1,8 @@
+2014-02-24  John David Anglin  <danglin@gcc.gnu.org>
+
+       * config/pa/pa.c (pa_output_move_double): Don't valididate when
+       adjusting offsetable addresses.
+
 2014-02-24  Guozhi Wei  <carrot@google.com>
 
        * sparseset.h (sparseset_pop): Fix the wrong index.
index 1907401..fb698d2 100644 (file)
@@ -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