diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-08-02 17:15:09 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-08-02 17:15:09 +0000 |
commit | ceecadc7ace0e7afdc803fd85d53cc7ceec248be (patch) | |
tree | 97b02a1d60563ef1e6c63bf06f02e8858844fecc /gcc/c-decl.c | |
parent | 7cc85421f7057cb2931474cadf8f3e1a65d8a4e8 (diff) | |
download | gcc-ceecadc7ace0e7afdc803fd85d53cc7ceec248be.tar.gz |
(init_decl_processing): Add __builtin_aggregate_incoming_address.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14609 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-decl.c')
-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 4662d39f2dd..295e5941ab7 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, |