56d343
--- gcc/reload.c	(revision 235552)
56d343
+++ gcc/reload.c	(working copy)
56d343
@@ -4054,14 +4054,14 @@ find_reloads (rtx insn, int replace, int
56d343
 			     &XEXP (recog_data.operand[i], 0), (rtx*) 0,
56d343
 			     base_reg_class (VOIDmode, as, MEM, SCRATCH),
56d343
 			     address_mode,
56d343
-			     VOIDmode, 0, 0, i, RELOAD_FOR_INPUT);
56d343
+			     VOIDmode, 0, 0, i, RELOAD_OTHER);
56d343
 	    rld[operand_reloadnum[i]].inc
56d343
 	      = GET_MODE_SIZE (GET_MODE (recog_data.operand[i]));
56d343
 
56d343
 	    /* If this operand is an output, we will have made any
56d343
 	       reloads for its address as RELOAD_FOR_OUTPUT_ADDRESS, but
56d343
 	       now we are treating part of the operand as an input, so
56d343
-	       we must change these to RELOAD_FOR_INPUT_ADDRESS.  */
56d343
+	       we must change these to RELOAD_FOR_OTHER_ADDRESS.  */
56d343
 
56d343
 	    if (modified[i] == RELOAD_WRITE)
56d343
 	      {
56d343
@@ -4070,10 +4070,10 @@ find_reloads (rtx insn, int replace, int
56d343
 		    if (rld[j].opnum == i)
56d343
 		      {
56d343
 			if (rld[j].when_needed == RELOAD_FOR_OUTPUT_ADDRESS)
56d343
-			  rld[j].when_needed = RELOAD_FOR_INPUT_ADDRESS;
56d343
+			  rld[j].when_needed = RELOAD_FOR_OTHER_ADDRESS;
56d343
 			else if (rld[j].when_needed
56d343
 				 == RELOAD_FOR_OUTADDR_ADDRESS)
56d343
-			  rld[j].when_needed = RELOAD_FOR_INPADDR_ADDRESS;
56d343
+			  rld[j].when_needed = RELOAD_FOR_OTHER_ADDRESS;
56d343
 		      }
56d343
 		  }
56d343
 	      }