From: Richard Kenner Date: Wed, 29 Sep 1993 22:34:51 +0000 (-0400) Subject: (GEN_INT): Add missing cast to HOST_WIDE_INT. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e51edaa389273142f161eb96c5a2d41dafe09ba6;p=gcc.git (GEN_INT): Add missing cast to HOST_WIDE_INT. From-SVN: r5533 --- diff --git a/gcc/rtl.h b/gcc/rtl.h index fa91347b000..a8a6399e209 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -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,