diff options
author | Richard Stallman <rms@gnu.org> | 1992-11-26 15:34:10 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-11-26 15:34:10 +0000 |
commit | 3b2f07926a2c2a98bd0e6d281a8d75dcc2087c17 (patch) | |
tree | e6d81f15c9f4f85e20a935ba4c71d8362fdeb76d | |
parent | ad59df7d5a0e108a06f5f9e9eef29d81b8b2ed75 (diff) | |
download | gcc-3b2f07926a2c2a98bd0e6d281a8d75dcc2087c17.zip gcc-3b2f07926a2c2a98bd0e6d281a8d75dcc2087c17.tar.gz gcc-3b2f07926a2c2a98bd0e6d281a8d75dcc2087c17.tar.bz2 |
(struct algorithm): Make coeff a HOST_WIDE_INT.
From-SVN: r2806
-rw-r--r-- | gcc/expmed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expmed.c b/gcc/expmed.c index 2534f57..5819ce4 100644 --- a/gcc/expmed.c +++ b/gcc/expmed.c @@ -1689,7 +1689,7 @@ struct algorithm int cost; unsigned int ops; enum alg_code op[MAX_BITS_PER_WORD]; - unsigned int coeff[MAX_BITS_PER_WORD]; + unsigned HOST_WIDE_INT coeff[MAX_BITS_PER_WORD]; }; /* Compute and return the best algorithm for multiplying by T. |