From: Richard Kenner Date: Thu, 18 Jun 1992 21:11:13 +0000 (-0400) Subject: Add new argument to SELECT_CC_MODE. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=460286d7d3d4f28b26ee347a9a01bfe84f9e0871;p=gcc.git Add new argument to SELECT_CC_MODE. From-SVN: r1218 --- diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index dd2a0ccc5e1..d3c0c9a5ab7 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -2553,7 +2553,7 @@ while (0) /* Returns a mode from class `MODE_CC' to be used when comparison operation code OP is applied to rtx X. */ -#define SELECT_CC_MODE(OP, X) \ +#define SELECT_CC_MODE(OP, X, Y) \ (GET_MODE_CLASS (GET_MODE (X)) != MODE_FLOAT \ ? SImode \ : ((OP == NE) ? CC_REV_FPmode : CC_FPmode))