HomeSort by: relevance | last modified time | path
    Searched defs:next_fld (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
pointer-query.cc 2438 tree next_fld = NULL_TREE; local
2440 /* NEXT_FLD's cached offset. */
2443 for (tree fld = first_fld; fld; fld = next_fld)
2445 next_fld = fld;
2448 next_fld = TREE_CHAIN (next_fld);
2449 while (next_fld
2450 && (TREE_CODE (next_fld) != FIELD_DECL
2451 || DECL_ARTIFICIAL (next_fld)));
2479 if (next_fld)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
pointer-query.cc 2425 tree next_fld = NULL_TREE; local
2427 /* NEXT_FLD's cached offset. */
2430 for (tree fld = first_fld; fld; fld = next_fld)
2432 next_fld = fld;
2435 next_fld = TREE_CHAIN (next_fld);
2436 while (next_fld
2437 && (TREE_CODE (next_fld) != FIELD_DECL
2438 || DECL_ARTIFICIAL (next_fld)));
2466 if (next_fld)
    [all...]

Completed in 16 milliseconds