diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1997-08-02 13:15:09 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1997-08-02 13:15:09 -0400 |
commit | 18989c57d34ab9d595ec70b6ecda1051f2a36750 (patch) | |
tree | 97b02a1d60563ef1e6c63bf06f02e8858844fecc /gcc | |
parent | 7815214ef7ef13a7a3244c6452124b7ea074284f (diff) | |
download | gcc-18989c57d34ab9d595ec70b6ecda1051f2a36750.zip gcc-18989c57d34ab9d595ec70b6ecda1051f2a36750.tar.gz gcc-18989c57d34ab9d595ec70b6ecda1051f2a36750.tar.bz2 |
(init_decl_processing): Add __builtin_aggregate_incoming_address.
From-SVN: r14609
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c-decl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 4662d39..295e594 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -3182,6 +3182,10 @@ init_decl_processing () endlink)), BUILT_IN_FRAME_ADDRESS, NULL_PTR); + builtin_function ("__builtin_aggregate_incoming_address", + build_function_type (ptr_type_node, NULL_TREE), + BUILT_IN_AGGREGATE_INCOMING_ADDRESS, NULL_PTR); + builtin_function ("__builtin_alloca", build_function_type (ptr_type_node, tree_cons (NULL_TREE, |