Home
last modified time | relevance | path

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

/dragonfly/contrib/gcc-8.0/gcc/
H A Dattribs.c354 diag_attr_exclusions (tree last_decl, tree node, tree attrname, in diag_attr_exclusions() argument
372 if (last_decl && last_decl != node && TREE_TYPE (last_decl) != node) in diag_attr_exclusions()
376 found |= diag_attr_exclusions (last_decl, last_decl, attrname, spec); in diag_attr_exclusions()
377 tree decl_type = TREE_TYPE (last_decl); in diag_attr_exclusions()
378 found |= diag_attr_exclusions (last_decl, decl_type, attrname, spec); in diag_attr_exclusions()
432 bool note = last_decl != NULL_TREE; in diag_attr_exclusions()
448 inform (DECL_SOURCE_LOCATION (last_decl), in diag_attr_exclusions()
467 tree last_decl /* = NULL_TREE */) in decl_attributes() argument
684 tree cur_and_last_decl[] = { *anode, last_decl }; in decl_attributes()
718 bool no_add = diag_attr_exclusions (last_decl, *anode, name, spec); in decl_attributes()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/cp/
H A Ddecl2.c1458 tree last_decl = NULL_TREE; in find_last_decl() local
1467 last_decl = lookup_name (name); in find_last_decl()
1474 if (last_decl && BASELINK_P (last_decl)) in find_last_decl()
1475 last_decl = BASELINK_FUNCTIONS (last_decl); in find_last_decl()
1478 if (!last_decl) in find_last_decl()
1481 if (DECL_P (last_decl) || TREE_CODE (last_decl) == OVERLOAD) in find_last_decl()
1484 for (lkp_iterator iter (last_decl); iter; ++iter) in find_last_decl()
1549 tree last_decl = find_last_decl (*decl); in cplus_decl_attributes() local
1550 decl_attributes (decl, attributes, flags, last_decl); in cplus_decl_attributes()
/dragonfly/contrib/gcc-8.0/gcc/c-family/
H A Dc-attribs.c1806 tree last_decl = node[1] ? node[1] : *node; in common_handle_aligned_attribute() local
1882 || ((lastalign = DECL_ALIGN (last_decl)) > bitalign))) in common_handle_aligned_attribute()
1895 if (DECL_USER_ALIGN (decl) || DECL_USER_ALIGN (last_decl)) in common_handle_aligned_attribute()
1905 inform (DECL_SOURCE_LOCATION (last_decl), "previous declaration here"); in common_handle_aligned_attribute()
/dragonfly/contrib/gcc-8.0/gcc/c/
H A Dc-decl.c4647 tree last_decl = lookup_name (DECL_NAME (*node)); in c_decl_attributes() local
4648 if (!last_decl) in c_decl_attributes()
4649 last_decl = lookup_name_in_scope (DECL_NAME (*node), external_scope); in c_decl_attributes()
4651 return decl_attributes (node, attributes, flags, last_decl); in c_decl_attributes()