diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-12 20:44:13 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-12 20:44:13 +0000 |
commit | abdd05490a544704910a13075f5e391a63fa8f3d (patch) | |
tree | 05f85a8e1b10fed0ab578189aec5cef7e8357ce0 /gcc/unroll.c | |
parent | 9a99456f727587ad524eb4863259f73c1a001254 (diff) | |
download | gcc-abdd05490a544704910a13075f5e391a63fa8f3d.tar.gz |
* unroll.c (unroll_loop): Make temp an unsigned HOST_WIDE_INT.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30513 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/unroll.c')
-rw-r--r-- | gcc/unroll.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c index fac8873caef..3994e79c226 100644 --- a/gcc/unroll.c +++ b/gcc/unroll.c @@ -234,7 +234,8 @@ unroll_loop (loop_end, insn_count, loop_start, end_insert_before, struct loop_info *loop_info; int strength_reduce_p; { - int i, j, temp; + int i, j; + unsigned HOST_WIDE_INT temp; int unroll_number = 1; rtx copy_start, copy_end; rtx insn, sequence, pattern, tem; |