Skip to content

Commit

Permalink
Remove C++11 constructor
Browse files Browse the repository at this point in the history
Patch should be backported in gcc-10 branch
  • Loading branch information
fxcoudert committed Dec 21, 2020
1 parent d6537ac commit 3f1b986
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions gcc/config/aarch64/aarch64-builtins.c
Original file line number Diff line number Diff line change
Expand Up @@ -1225,8 +1225,9 @@ aarch64_init_memtag_builtins (void)
= aarch64_general_add_builtin ("__builtin_aarch64_memtag_"#N, \
T, AARCH64_MEMTAG_BUILTIN_##F); \
aarch64_memtag_builtin_data[AARCH64_MEMTAG_BUILTIN_##F - \
AARCH64_MEMTAG_BUILTIN_START - 1] = \
{T, CODE_FOR_##I};
AARCH64_MEMTAG_BUILTIN_START - 1].ftype = T; \
aarch64_memtag_builtin_data[AARCH64_MEMTAG_BUILTIN_##F - \
AARCH64_MEMTAG_BUILTIN_START - 1].icode = CODE_FOR_##I;

fntype = build_function_type_list (ptr_type_node, ptr_type_node,
uint64_type_node, NULL);
Expand Down

0 comments on commit 3f1b986

Please sign in to comment.