aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/except.c
diff options
context:
space:
mode:
authorJason Merrill <jason@yorick.cygnus.com>1997-05-06 20:14:14 +0000
committerMike Stump <mrs@gcc.gnu.org>1997-05-06 20:14:14 +0000
commitbeb53fb84a96ecfc7b5f207df6ed13014ec23a9d (patch)
treeebe6e9cdaf48b8ffa8ac8c4a3fa3e9596e317942 /gcc/cp/except.c
parent065bbfe6bf8a705bcfa5a7396559ac6e1660d7e6 (diff)
downloadgcc-beb53fb84a96ecfc7b5f207df6ed13014ec23a9d.zip
gcc-beb53fb84a96ecfc7b5f207df6ed13014ec23a9d.tar.gz
gcc-beb53fb84a96ecfc7b5f207df6ed13014ec23a9d.tar.bz2
91th Cygnus<->FSF quick merge
From-SVN: r14021
Diffstat (limited to 'gcc/cp/except.c')
-rw-r--r--gcc/cp/except.c52
1 files changed, 26 insertions, 26 deletions
diff --git a/gcc/cp/except.c b/gcc/cp/except.c
index 45994ce..83363db 100644
--- a/gcc/cp/except.c
+++ b/gcc/cp/except.c
@@ -265,32 +265,32 @@ init_exception_processing ()
push_lang_context (lang_name_c);
- catch_match_fndecl =
- builtin_function (flag_rtti
- ? "__throw_type_match_rtti"
- : "__throw_type_match",
- build_function_type (ptr_type_node,
- tree_cons (NULL_TREE, ptr_type_node,
- tree_cons (NULL_TREE, ptr_type_node,
- tree_cons (NULL_TREE, ptr_type_node,
- void_list_node)))),
- NOT_BUILT_IN, NULL_PTR);
- find_first_exception_match_fndecl =
- builtin_function ("__find_first_exception_table_match",
- build_function_type (ptr_type_node,
- tree_cons (NULL_TREE, ptr_type_node,
- void_list_node)),
- NOT_BUILT_IN, NULL_PTR);
- unwind_fndecl =
- builtin_function ("__unwind_function",
- build_function_type (void_type_node,
- tree_cons (NULL_TREE, ptr_type_node,
- void_list_node)),
- NOT_BUILT_IN, NULL_PTR);
- empty_fndecl =
- builtin_function ("__empty",
- build_function_type (void_type_node, void_list_node),
- NOT_BUILT_IN, NULL_PTR);
+ catch_match_fndecl
+ = builtin_function (flag_rtti
+ ? "__throw_type_match_rtti"
+ : "__throw_type_match",
+ build_function_type (ptr_type_node,
+ tree_cons (NULL_TREE, ptr_type_node,
+ tree_cons (NULL_TREE, ptr_type_node,
+ tree_cons (NULL_TREE, ptr_type_node,
+ void_list_node)))),
+ NOT_BUILT_IN, NULL_PTR);
+ find_first_exception_match_fndecl
+ = builtin_function ("__find_first_exception_table_match",
+ build_function_type (ptr_type_node,
+ tree_cons (NULL_TREE, ptr_type_node,
+ void_list_node)),
+ NOT_BUILT_IN, NULL_PTR);
+ unwind_fndecl
+ = builtin_function ("__unwind_function",
+ build_function_type (void_type_node,
+ tree_cons (NULL_TREE, ptr_type_node,
+ void_list_node)),
+ NOT_BUILT_IN, NULL_PTR);
+ empty_fndecl
+ = builtin_function ("__empty",
+ build_function_type (void_type_node, void_list_node),
+ NOT_BUILT_IN, NULL_PTR);
DECL_EXTERNAL (empty_fndecl) = 1;
TREE_PUBLIC (empty_fndecl) = 1;