Commit 854e97f0 by Richard Kenner

(expand_call): Use HOST_WIDE_INT instead of int when comparing a

pointer to an integer constant.

From-SVN: r1747
parent d0ab8cd3
......@@ -607,7 +607,7 @@ expand_call (exp, target, ignore)
structure_value_addr);
/* If inlining succeeded, return. */
if ((int) temp != -1)
if ((HOST_WIDE_INT) temp != -1)
{
int i;
......
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