Home
last modified time | relevance | path

Searched refs:OP_OPMASK (Results 1 – 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/bmake/
HDtarg.c575 type &= ~OP_OPMASK; in Targ_PrintType()
684 switch (gn->type & OP_OPMASK) { in Targ_PrintNode()
824 cgn->type |= pgn->type & ~OP_OPMASK; in TargPropagateCohort()
HDmake.h264 #define OP_OPMASK (OP_DEPENDS|OP_FORCE|OP_DOUBLEDEP) macro
316 #define OP_NOP(t) (((t) & OP_OPMASK) == 0x00000000)
HDparse.c918 if (((op & OP_OPMASK) != (gn->type & OP_OPMASK)) && in ParseDoOp()
925 if ((op == OP_DOUBLEDEP) && ((gn->type & OP_OPMASK) == OP_DOUBLEDEP)) { in ParseDoOp()
940 gn->type |= op & ~OP_OPMASK; in ParseDoOp()
HDmake.c502 pgn->type |= cgn->type & ~(OP_OPMASK|OP_USE|OP_USEBEFORE|OP_TRANSFORM); in Make_HandleUse()