Home
last modified time | relevance | path

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

/netbsd/src/external/gpl3/gcc/dist/gcc/
Dtree.cc11544 tree stripped_decl; in get_name() local
11546 stripped_decl = t; in get_name()
11547 STRIP_NOPS (stripped_decl); in get_name()
11548 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl)) in get_name()
11549 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl)); in get_name()
11550 else if (TREE_CODE (stripped_decl) == SSA_NAME) in get_name()
11552 tree name = SSA_NAME_IDENTIFIER (stripped_decl); in get_name()
11559 switch (TREE_CODE (stripped_decl)) in get_name()
11562 return get_name (TREE_OPERAND (stripped_decl, 0)); in get_name()