diff options
author | Jan Hubicka <hubicka@ucw.cz> | 2015-04-30 04:58:43 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2015-04-30 02:58:43 +0000 |
commit | fd2bbdfd97b5af9b848f79eceb55d2dc60c823c5 (patch) | |
tree | 139ab537d9506c6cd6b72a695757ad2b65e7ceda /gcc/tree.c | |
parent | b0845a1e51f8c1f3e9e02049a2407321e22ad0b9 (diff) | |
download | gcc-fd2bbdfd97b5af9b848f79eceb55d2dc60c823c5.zip gcc-fd2bbdfd97b5af9b848f79eceb55d2dc60c823c5.tar.gz gcc-fd2bbdfd97b5af9b848f79eceb55d2dc60c823c5.tar.bz2 |
tree.c (build_common_builtin_nodes): Do not build __builtin_alloca_with_align as equivalent of library alloca.
* tree.c (build_common_builtin_nodes): Do not build
__builtin_alloca_with_align as equivalent of library alloca.
From-SVN: r222607
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -10099,7 +10099,8 @@ build_common_builtin_nodes (void) ftype = build_function_type_list (ptr_type_node, size_type_node, size_type_node, NULL_TREE); local_define_builtin ("__builtin_alloca_with_align", ftype, - BUILT_IN_ALLOCA_WITH_ALIGN, "alloca", + BUILT_IN_ALLOCA_WITH_ALIGN, + "__builtin_alloca_with_align", ECF_MALLOC | ECF_NOTHROW | ECF_LEAF); /* If we're checking the stack, `alloca' can throw. */ |