Commit f1b690f1 by John David Anglin Committed by John David Anglin

* emit-rtl.c (init_emit_once): Add missing cast to HOST_WIDE_INT.

From-SVN: r55155
parent 55380b08
2002-07-01 John David Anglin <dave@hiauly1.hia.nrc.ca>
* emit-rtl.c (init_emit_once): Add missing cast to HOST_WIDE_INT.
2002-07-01 Roger Sayle <roger@eyesopen.com>
PR opt/4046
......
......@@ -5286,7 +5286,7 @@ init_emit_once (line_numbers)
tries to use these variables. */
for (i = - MAX_SAVED_CONST_INT; i <= MAX_SAVED_CONST_INT; i++)
const_int_rtx[i + MAX_SAVED_CONST_INT] =
gen_rtx_raw_CONST_INT (VOIDmode, i);
gen_rtx_raw_CONST_INT (VOIDmode, (HOST_WIDE_INT) i);
if (STORE_FLAG_VALUE >= - MAX_SAVED_CONST_INT
&& STORE_FLAG_VALUE <= MAX_SAVED_CONST_INT)
......
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