remove some of the lint complaints
This commit is contained in:
parent
4e419a19cd
commit
14d7db7499
3 changed files with 10 additions and 0 deletions
|
@ -256,7 +256,9 @@ if (Debug)
|
||||||
c3_p regcp[MAXCREG];
|
c3_p regcp[MAXCREG];
|
||||||
rl_p regls[MAXCREG];
|
rl_p regls[MAXCREG];
|
||||||
c3_p cp,findcoerc();
|
c3_p cp,findcoerc();
|
||||||
|
#ifdef MAXSPLIT
|
||||||
int sret;
|
int sret;
|
||||||
|
#endif
|
||||||
int stackpad;
|
int stackpad;
|
||||||
struct perm *tup,*ntup,*besttup,*tuples();
|
struct perm *tup,*ntup,*besttup,*tuples();
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,9 @@ static char rcsid[] = "$Header$";
|
||||||
|
|
||||||
chrefcount(regno,amount,tflag) {
|
chrefcount(regno,amount,tflag) {
|
||||||
register struct reginfo *rp;
|
register struct reginfo *rp;
|
||||||
|
#if MAXMEMBERS != 0
|
||||||
register i;
|
register i;
|
||||||
|
#endif
|
||||||
|
|
||||||
rp= &machregs[regno];
|
rp= &machregs[regno];
|
||||||
#if MAXMEMBERS!=0
|
#if MAXMEMBERS!=0
|
||||||
|
@ -40,7 +42,9 @@ chrefcount(regno,amount,tflag) {
|
||||||
|
|
||||||
getrefcount(regno) {
|
getrefcount(regno) {
|
||||||
register struct reginfo *rp;
|
register struct reginfo *rp;
|
||||||
|
#if MAXMEMBERS != 0
|
||||||
register i,maxcount;
|
register i,maxcount;
|
||||||
|
#endif
|
||||||
|
|
||||||
rp= &machregs[regno];
|
rp= &machregs[regno];
|
||||||
#if MAXMEMBERS!=0
|
#if MAXMEMBERS!=0
|
||||||
|
|
|
@ -52,7 +52,9 @@ instance(instno,token) register token_p token; {
|
||||||
register inst_p inp;
|
register inst_p inp;
|
||||||
int i;
|
int i;
|
||||||
register token_p tp;
|
register token_p tp;
|
||||||
|
#if MAXMEMBERS != 0
|
||||||
struct reginfo *rp;
|
struct reginfo *rp;
|
||||||
|
#endif
|
||||||
int regno;
|
int regno;
|
||||||
result_t result;
|
result_t result;
|
||||||
|
|
||||||
|
@ -145,7 +147,9 @@ instance(instno,token) register token_p token; {
|
||||||
cinstance(instno,token,tp,regno) register token_p token,tp; {
|
cinstance(instno,token,tp,regno) register token_p token,tp; {
|
||||||
register inst_p inp;
|
register inst_p inp;
|
||||||
int i;
|
int i;
|
||||||
|
#if MAXMEMBERS != 0
|
||||||
struct reginfo *rp;
|
struct reginfo *rp;
|
||||||
|
#endif
|
||||||
result_t result;
|
result_t result;
|
||||||
int sh; /* saved stackheight */
|
int sh; /* saved stackheight */
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue