Stop USL compilers for erroring with "integral constant expression expected"

This commit is contained in:
Tim Rice 2019-03-31 22:14:22 -07:00
parent 43f47ebbdd
commit 0099115178
1 changed files with 4 additions and 4 deletions

View File

@ -502,8 +502,8 @@ int r3_recip(small *r,const small *s)
int loop;
small f[p + 1];
small g[p + 1];
small u[loops + 1];
small v[loops + 1];
small u[2*p + 2];
small v[2*p + 2];
small c;
int i;
int d = p;
@ -819,8 +819,8 @@ int rq_recip3(modq *r,const small *s)
int loop;
modq f[p + 1];
modq g[p + 1];
modq u[loops + 1];
modq v[loops + 1];
modq u[2*p + 2];
modq v[2*p + 2];
modq c;
int i;
int d = p;