Commit e51edaa3 by Richard Kenner

(GEN_INT): Add missing cast to HOST_WIDE_INT.

From-SVN: r5533
parent d91f5bfa
/* Register Transfer Language (RTL) definitions for GNU C-Compiler /* 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. This file is part of GNU CC.
...@@ -641,7 +641,7 @@ extern char *note_insn_name[]; ...@@ -641,7 +641,7 @@ extern char *note_insn_name[];
extern rtx plus_constant_wide PROTO((rtx, HOST_WIDE_INT)); extern rtx plus_constant_wide PROTO((rtx, HOST_WIDE_INT));
extern rtx plus_constant_for_output_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 #if 0
/* We cannot define prototypes for the variable argument functions, /* We cannot define prototypes for the variable argument functions,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment