From: Richard Kenner Date: Sat, 19 Sep 1992 19:44:58 +0000 (-0400) Subject: (PROMOTE_MODE): Provide default definition. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=601ce03b17589fd054532d11977549772d392f0d;p=gcc.git (PROMOTE_MODE): Provide default definition. From-SVN: r2173 --- diff --git a/gcc/expr.h b/gcc/expr.h index f7d704dbf7c..234551e0f1e 100644 --- a/gcc/expr.h +++ b/gcc/expr.h @@ -29,6 +29,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define BRANCH_COST 1 #endif +/* The default is that we do not promote the mode of an object. */ +#ifndef PROMOTE_MODE +#define PROMOTE_MODE(MODE,UNSIGNEDP,TYPE) +#endif + /* Macros to access the slots of a QUEUED rtx. Here rather than in rtl.h because only the expansion pass should ever encounter a QUEUED. */