diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1992-09-19 15:44:58 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1992-09-19 15:44:58 -0400 |
commit | 601ce03b17589fd054532d11977549772d392f0d (patch) | |
tree | 14c7c219d45a59d516e7f35dc27aa00e81a6d778 /gcc/expr.h | |
parent | 17c7332100d72bdb013d40db25cf64617c48ca9e (diff) | |
download | gcc-601ce03b17589fd054532d11977549772d392f0d.zip gcc-601ce03b17589fd054532d11977549772d392f0d.tar.gz gcc-601ce03b17589fd054532d11977549772d392f0d.tar.bz2 |
(PROMOTE_MODE): Provide default definition.
From-SVN: r2173
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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. */ |