Home
last modified time | relevance | path

Searched refs:firstdtor (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dexpression.c1813 ptrdiff_t firstdtor = -1; in functionParameters() local
1819 if (firstdtor == -1 && arg->type->needsDestruction()) in functionParameters()
1823 firstdtor = i; in functionParameters()
1829 const bool needsPrefix = (firstdtor >= 0 && lastthrow >= 0 in functionParameters()
1830 && (lastthrow - firstdtor) * step > 0); in functionParameters()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dexpressionsem.d2249 ptrdiff_t firstdtor = -1; // first argument that needs destruction in functionParameters() local
2261 if (firstdtor == -1) in functionParameters()
2262 firstdtor = i; in functionParameters()
2271 ? firstdtor >= 0 // true if any argument needs destruction in functionParameters()
2272 : firstdtor >= 0 && lastthrow >= 0 && in functionParameters()
2273 (lastthrow - firstdtor) * step > 0; // last throw after first destruction in functionParameters()