Commit 3b2f0792 by Richard Stallman

(struct algorithm): Make coeff a HOST_WIDE_INT.

From-SVN: r2806
parent ad59df7d
...@@ -1689,7 +1689,7 @@ struct algorithm ...@@ -1689,7 +1689,7 @@ struct algorithm
int cost; int cost;
unsigned int ops; unsigned int ops;
enum alg_code op[MAX_BITS_PER_WORD]; 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. /* Compute and return the best algorithm for multiplying by T.
......
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