Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp322 int64_t nextValue = J->Low->getSExtValue(); in Clusterify() local
329 assert(nextValue > currentValue && "Cases should be strictly ascending"); in Clusterify()
330 if ((nextValue == currentValue + 1) && (currentBB == nextBB)) { in Clusterify()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddsymbolsem.d2157 int nextValue = 0; // C11 6.7.2.2-3 first member value defaults to 0 in visit() local
2159 void emSemantic(EnumMember em, ref int nextValue) in visit()
2196 nextValue = cast(int)v; in visit()
2200 em.value = new IntegerExp(em.loc, nextValue, Type.tint32); in visit()
2202 ++nextValue; // C11 6.7.2.2-3 add 1 to value of previous enumeration constant in visit()
2209 emSemantic(em, nextValue); in visit()