aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-nested.cc
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@baylibre.com>2024-04-10 10:55:10 +0200
committerThomas Schwinge <tschwinge@baylibre.com>2024-04-10 10:55:10 +0200
commite02c6e686bd345089480237d58f2d153cbcc463c (patch)
tree5a61030629450dd778b1beb356c10a208a6aeb78 /gcc/tree-nested.cc
parent0de2032ecf451e9fed2ad16c3ce771663fbc37a5 (diff)
parent4c2169d2f4061e72e1e61e9a175d16f7ff50f5c0 (diff)
downloadgcc-e02c6e686bd345089480237d58f2d153cbcc463c.zip
gcc-e02c6e686bd345089480237d58f2d153cbcc463c.tar.gz
gcc-e02c6e686bd345089480237d58f2d153cbcc463c.tar.bz2
Merge commit 'ceed844b5284aeabbdfe25ccf099e7ebeeb14a9b^' into HEAD
Diffstat (limited to 'gcc/tree-nested.cc')
-rw-r--r--gcc/tree-nested.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-nested.cc b/gcc/tree-nested.cc
index 96718a6..c8f07f7 100644
--- a/gcc/tree-nested.cc
+++ b/gcc/tree-nested.cc
@@ -3557,13 +3557,13 @@ finalize_nesting_tree_1 (struct nesting_info *root)
root->frame_decl, field, NULL_TREE);
arg3 = build_addr (x);
- x = builtin_decl_implicit (BUILT_IN_NESTED_PTR_CREATED);
+ x = builtin_decl_explicit (BUILT_IN_GCC_NESTED_PTR_CREATED);
stmt = gimple_build_call (x, 3, arg1, arg2, arg3);
gimple_seq_add_stmt (&stmt_list, stmt);
/* This call to delete the nested function trampoline is added to
the cleanup list, and called when we exit the current scope. */
- x = builtin_decl_implicit (BUILT_IN_NESTED_PTR_DELETED);
+ x = builtin_decl_explicit (BUILT_IN_GCC_NESTED_PTR_DELETED);
stmt = gimple_build_call (x, 0);
gimple_seq_add_stmt (&cleanup_list, stmt);
}