Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dexpression.c1812 ptrdiff_t lastthrow = -1; in functionParameters() local
1818 lastthrow = i; in functionParameters()
1829 const bool needsPrefix = (firstdtor >= 0 && lastthrow >= 0 in functionParameters()
1830 && (lastthrow - firstdtor) * step > 0); in functionParameters()
1868 const bool needsDtor = (!isRef && arg->type->needsDestruction() && i != lastthrow); in functionParameters()
1884 assert(i == lastthrow); in functionParameters()
1919 if (i == lastthrow) in functionParameters()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dexpressionsem.d2248 ptrdiff_t lastthrow = -1; // last argument that may throw in functionParameters() local
2255 lastthrow = i; in functionParameters()
2272 : firstdtor >= 0 && lastthrow >= 0 && in functionParameters()
2273 (lastthrow - firstdtor) * step > 0; // last throw after first destruction in functionParameters()
2276 : lastthrow; // up to last potentially throwing argument in functionParameters()