From: Richard Kenner Date: Tue, 13 Apr 1993 21:22:51 +0000 (-0400) Subject: (LEGITIMIZE_ADDRESS): Last arg to force_operand is NULL_RTX. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a015279e4feb61d79d2515c8ea8b8a5d939eb41e;p=gcc.git (LEGITIMIZE_ADDRESS): Last arg to force_operand is NULL_RTX. From-SVN: r4146 --- diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h index 27dbfb02e74..1646e789116 100644 --- a/gcc/config/sparc/sparc.h +++ b/gcc/config/sparc/sparc.h @@ -1302,16 +1302,16 @@ extern struct rtx_def *legitimize_pic_address (); { rtx sparc_x = (X); \ if (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 0)) == MULT) \ (X) = gen_rtx (PLUS, Pmode, XEXP (X, 1), \ - force_operand (XEXP (X, 0), 0)); \ + force_operand (XEXP (X, 0), NULL_RTX)); \ if (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 1)) == MULT) \ (X) = gen_rtx (PLUS, Pmode, XEXP (X, 0), \ - force_operand (XEXP (X, 1), 0)); \ + force_operand (XEXP (X, 1), NULL_RTX)); \ if (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 0)) == PLUS) \ - (X) = gen_rtx (PLUS, Pmode, force_operand (XEXP (X, 0), 0),\ + (X) = gen_rtx (PLUS, Pmode, force_operand (XEXP (X, 0), NULL_RTX),\ XEXP (X, 1)); \ if (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 1)) == PLUS) \ (X) = gen_rtx (PLUS, Pmode, XEXP (X, 0), \ - force_operand (XEXP (X, 1), 0)); \ + force_operand (XEXP (X, 1), NULL_RTX)); \ if (sparc_x != (X) && memory_address_p (MODE, X)) \ goto WIN; \ if (flag_pic) (X) = legitimize_pic_address (X, MODE, 0, 0); \