Home
last modified time | relevance | path

Searched refs:blockAssign (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dexpression.h1048 blockAssign = 1, // setting the contents of an array enumerator
H A Dexpressionsem.d9695 exp.memset = MemorySet.blockAssign; // make it easy for back end to tell what this is in visit()
9856 if (exp.memset != MemorySet.blockAssign && in visit()
9870 …if (checkNonAssignmentArrayOp(exp.e2, exp.memset != MemorySet.blockAssign && exp.op == EXP.assign)) in visit()
H A Dexpression.d5942 blockAssign = 1, // setting the contents of an array enumerator
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dexpression.h1127 blockAssign = 1, // setting the contents of an array enumerator
H A Dexpressionsem.c6004 exp->memset |= blockAssign; // make it easy for back end to tell what this is in visit()
6142 if (!(exp->memset & blockAssign) && exp->e1->op == TOKslice && in visit()
6154 … if (checkNonAssignmentArrayOp(exp->e2, !(exp->memset & blockAssign) && exp->op == TOKassign)) in visit()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/
H A Dexpr.cc941 if (e->memset == MemorySet::blockAssign) in visit()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/
H A Dexpr.cc958 if (e->memset & blockAssign) in visit()