diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-09-29 18:34:51 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-09-29 18:34:51 -0400 |
commit | e51edaa389273142f161eb96c5a2d41dafe09ba6 (patch) | |
tree | 4438b7a927dcd2eb88bc9bb09f9126ac28c1e9c1 /gcc | |
parent | d91f5bfa6b05179eee3b021bba320b466b969318 (diff) | |
download | gcc-e51edaa389273142f161eb96c5a2d41dafe09ba6.zip gcc-e51edaa389273142f161eb96c5a2d41dafe09ba6.tar.gz gcc-e51edaa389273142f161eb96c5a2d41dafe09ba6.tar.bz2 |
(GEN_INT): Add missing cast to HOST_WIDE_INT.
From-SVN: r5533
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/rtl.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* Register Transfer Language (RTL) definitions for GNU C-Compiler - Copyright (C) 1987, 1991, 1992 Free Software Foundation, Inc. + Copyright (C) 1987, 1991, 1992, 1993 Free Software Foundation, Inc. This file is part of GNU CC. @@ -641,7 +641,7 @@ extern char *note_insn_name[]; extern rtx plus_constant_wide PROTO((rtx, HOST_WIDE_INT)); extern rtx plus_constant_for_output_wide PROTO((rtx, HOST_WIDE_INT)); -#define GEN_INT(N) gen_rtx (CONST_INT, VOIDmode, (N)) +#define GEN_INT(N) gen_rtx (CONST_INT, VOIDmode, (HOST_WIDE_INT) (N)) #if 0 /* We cannot define prototypes for the variable argument functions, |