removed unused macros, changed lint flags

This commit is contained in:
ceriel 1990-12-17 13:53:44 +00:00
parent b3ff76d859
commit a836599f53
4 changed files with 1 additions and 4 deletions

View file

@ -7,7 +7,7 @@ SHR=../share
LDFLAGS=-i
CPPFLAGS=-DVERBOSE -DNOTCOMPACT
CFLAGS=$(CPPFLAGS) -O
LINTFLAGS=-hbac
LINTFLAGS=-hbu
CFILES=\
il.c il1_anal.c il1_cal.c il1_formal.c il1_aux.c il2_aux.c \

View file

@ -25,7 +25,6 @@
#include "il_aux.h"
#include "../share/put.h"
#define BODY_KNOWN(p) (p->p_flags1 & (byte) PF_BODYSEEN)
#define ENVIRON(p) (p->p_flags1 & (byte) PF_ENVIRON)
#define RETURN_BLOCK(b) (Lnrelems(b->b_succ) == 0)
#define LAST_BLOCK(b) (b->b_next == (bblock_p) 0)

View file

@ -18,7 +18,6 @@
#include "il_aux.h"
#include "il1_aux.h"
#define CHANGE_INDIR(p) (p->p_change->c_flags & CF_INDIR)
#define USE_INDIR(p) (p->p_use->u_flags & UF_INDIR)
#define IS_INSTR(c) (c >= sp_fmnem && c <= sp_lmnem)

View file

@ -22,7 +22,6 @@
#include "../share/get.h"
#include "../share/aux.h"
#define CHANGE_INDIR(p) (p->p_change->c_flags & CF_INDIR)
#define USE_INDIR(p) (p->p_use->u_flags & UF_INDIR)
#define OFTEN_USED(f) ((f->f_flags&FF_OFTENUSED) == FF_OFTENUSED)