Searched refs:new_decl (Results 1 - 7 of 7) sorted by relevance

/freebsd-9.3-release/contrib/gcc/
H A Dtree-nested.c872 tree x, field, new_decl;
910 new_decl = build_decl (VAR_DECL, DECL_NAME (decl), TREE_TYPE (decl));
911 DECL_CONTEXT (new_decl) = info->context;
912 DECL_SOURCE_LOCATION (new_decl) = DECL_SOURCE_LOCATION (decl);
913 DECL_ARTIFICIAL (new_decl) = DECL_ARTIFICIAL (decl);
914 DECL_IGNORED_P (new_decl) = DECL_IGNORED_P (decl);
915 TREE_THIS_VOLATILE (new_decl) = TREE_THIS_VOLATILE (decl);
916 TREE_SIDE_EFFECTS (new_decl) = TREE_SIDE_EFFECTS (decl);
917 TREE_READONLY (new_decl) = TREE_READONLY (decl);
918 TREE_ADDRESSABLE (new_decl)
870 tree x, field, new_decl; local
1201 tree x, new_decl; local
[all...]
H A Dtree-inline.c509 tree new_decl; local
512 new_decl = remap_decl (*tp, id);
513 gcc_assert (new_decl);
515 STRIP_TYPE_NOPS (new_decl);
516 *tp = new_decl;
2759 tree_function_versioning (tree old_decl, tree new_decl, varray_type tree_map, argument
2772 && TREE_CODE (new_decl) == FUNCTION_DECL);
2776 new_version_node = cgraph_node (new_decl);
2778 allocate_struct_function (new_decl);
2780 cfun->function_end_locus = DECL_SOURCE_LOCATION (new_decl);
[all...]
H A Dcgraphunit.c1774 tree new_decl,
1784 new_version = cgraph_node (new_decl);
1844 tree new_decl; local
1851 new_decl = copy_node (old_decl);
1856 cgraph_copy_node_for_versioning (old_version_node, new_decl,
1860 tree_function_versioning (old_decl, new_decl, tree_map, false);
1773 cgraph_copy_node_for_versioning(struct cgraph_node *old_version, tree new_decl, VEC(cgraph_edge_p,heap) *redirect_callers) argument
H A Domp-low.c647 tree new_decl, size; local
649 new_decl = lookup_decl (decl, ctx);
651 TREE_TYPE (new_decl) = remap_type (TREE_TYPE (decl), &ctx->cb);
653 if ((!TREE_CONSTANT (DECL_SIZE (new_decl)) || private_debug)
658 SET_DECL_VALUE_EXPR (new_decl, ve);
659 DECL_HAS_VALUE_EXPR_P (new_decl) = 1;
662 if (!TREE_CONSTANT (DECL_SIZE (new_decl)))
666 size = TYPE_SIZE (TREE_TYPE (new_decl));
667 DECL_SIZE (new_decl) = size;
671 size = TYPE_SIZE_UNIT (TREE_TYPE (new_decl));
[all...]
H A Dc-decl.c1994 warn_if_shadowing (tree new_decl)
2001 || DECL_IS_BUILTIN (new_decl)
2003 || DECL_FROM_INLINE (new_decl))
2007 for (b = I_SYMBOL_BINDING (DECL_NAME (new_decl)); b; b = b->shadowed)
2008 if (b->decl && b->decl != new_decl && !b->invisible)
2015 "non-variable", new_decl);
2020 new_decl);
2023 "declaration", new_decl);
2028 "a built-in function", new_decl);
2033 new_decl);
1985 warn_if_shadowing(tree new_decl) argument
[all...]
/freebsd-9.3-release/contrib/gcc/cp/
H A Dpt.c6523 tree new_decl;
6525 new_decl = tsubst (decl, args, complain, in_decl);
6527 if (new_decl == error_mark_node)
6530 DECL_TEMPLATE_RESULT (r) = new_decl;
6531 DECL_TI_TEMPLATE (new_decl) = r;
6532 TREE_TYPE (r) = TREE_TYPE (new_decl);
6533 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
6534 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
6522 tree new_decl; local
H A Ddecl.c1085 check_redeclaration_exception_specification (tree new_decl,
1093 new_type = TREE_TYPE (new_decl);
1110 error ("declaration of %qF throws different exceptions", new_decl);
1080 check_redeclaration_exception_specification(tree new_decl, tree old_decl) argument

Completed in 284 milliseconds