diff options
author | Mark Mitchell <mark@codesourcery.com> | 1999-12-17 07:39:13 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-12-17 07:39:13 +0000 |
commit | fc69382254fcf45ced69a604adea5b6123c3c1c8 (patch) | |
tree | d54c407a6af521d26af28babaad7f943f2b5c8f1 /gcc/tree.h | |
parent | 5ac99d9adcd93a27006a6ac8d9b7006e65f7aaa8 (diff) | |
download | gcc-fc69382254fcf45ced69a604adea5b6123c3c1c8.zip gcc-fc69382254fcf45ced69a604adea5b6123c3c1c8.tar.gz gcc-fc69382254fcf45ced69a604adea5b6123c3c1c8.tar.bz2 |
crtstuff.c (__dso_handle): Declare.
* crtstuff.c (__dso_handle): Declare.
(__cxa_finalize): Likewise.
(do_global_dtors_aux): Call __cxa_finalize if __dso_handle is
non-NULL.
* invoke.texi: Document -fuse-cxa-atexit.
* tree.h (ptr_type_node): Document.
(const_ptr_type_node): Likewise.
From-SVN: r30989
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1542,7 +1542,9 @@ extern tree global_trees[TI_MAX]; #define complex_long_double_type_node global_trees[TI_COMPLEX_LONG_DOUBLE_TYPE] #define void_type_node global_trees[TI_VOID_TYPE] +/* The C type `void *'. */ #define ptr_type_node global_trees[TI_PTR_TYPE] +/* The C type `const void *'. */ #define const_ptr_type_node global_trees[TI_CONST_PTR_TYPE] #define ptrdiff_type_node global_trees[TI_PTRDIFF_TYPE] #define va_list_type_node global_trees[TI_VA_LIST_TYPE] |