diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1992-08-02 21:36:27 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1992-08-02 21:36:27 -0400 |
commit | 854e97f078ce701fa812d598f86e78e298b829f3 (patch) | |
tree | b45c2374d4481edae008e28667518cc49f21d412 /gcc/calls.c | |
parent | d0ab8cd3f394c84e9584437a03b329eb7834437c (diff) | |
download | gcc-854e97f078ce701fa812d598f86e78e298b829f3.zip gcc-854e97f078ce701fa812d598f86e78e298b829f3.tar.gz gcc-854e97f078ce701fa812d598f86e78e298b829f3.tar.bz2 |
(expand_call): Use HOST_WIDE_INT instead of int when comparing a
pointer to an integer constant.
From-SVN: r1747
Diffstat (limited to 'gcc/calls.c')
-rw-r--r-- | gcc/calls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index d46d103..6c18536 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; |