From: Richard Kenner Date: Mon, 3 Aug 1992 01:36:27 +0000 (-0400) Subject: (expand_call): Use HOST_WIDE_INT instead of int when comparing a X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=854e97f078ce701fa812d598f86e78e298b829f3;p=gcc.git (expand_call): Use HOST_WIDE_INT instead of int when comparing a pointer to an integer constant. From-SVN: r1747 --- diff --git a/gcc/calls.c b/gcc/calls.c index d46d1037459..6c18536ef7a 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -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;