aboutsummaryrefslogtreecommitdiff
path: root/gcc/gbl-ctors.h
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2000-07-28 16:08:54 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2000-07-28 16:08:54 +0000
commit63bc1d05cc767f4ba9e7b2799927fb9e51aa409e (patch)
tree734e96f3da18c93c6b7322e5540e77ed92beff78 /gcc/gbl-ctors.h
parent60dd1b7be977f07cfddcc7a501db2874a2cd6ca3 (diff)
downloadgcc-63bc1d05cc767f4ba9e7b2799927fb9e51aa409e.zip
gcc-63bc1d05cc767f4ba9e7b2799927fb9e51aa409e.tar.gz
gcc-63bc1d05cc767f4ba9e7b2799927fb9e51aa409e.tar.bz2
dwarf2out.c: Indent #error directive.
* dwarf2out.c: Indent #error directive. * gbl-ctors.h: Fix typo in comment. (__do_global_ctors): Prototype. * gcse.c (record_one_set, pre_delete): Remove unused variables. * rs6000.c (rs6000_maybe_dead): Delete unused prototype. (print_operand): Initialize variable `t'. From-SVN: r35319
Diffstat (limited to 'gcc/gbl-ctors.h')
-rw-r--r--gcc/gbl-ctors.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/gcc/gbl-ctors.h b/gcc/gbl-ctors.h
index 23fa736..ad72b16 100644
--- a/gcc/gbl-ctors.h
+++ b/gcc/gbl-ctors.h
@@ -2,7 +2,8 @@
for getting g++ file-scope static objects constructed. This file
will get included either by libgcc2.c (for systems that don't support
a .init section) or by crtstuff.c (for those that do).
- Copyright (C) 1991, 1995, 1996, 1998, 1999 Free Software Foundation, Inc.
+ Copyright (C) 1991, 1995, 1996, 1998, 1999, 2000
+ Free Software Foundation, Inc.
Contributed by Ron Guilmette (rfg@segfault.us.com)
This file is part of GNU CC.
@@ -44,7 +45,11 @@ typedef void (*func_ptr) (void);
extern func_ptr __CTOR_LIST__[];
extern func_ptr __DTOR_LIST__[];
-/* Declare the routine which need to get invoked at program exit time. */
+/* Declare the routine which needs to get invoked at program start time. */
+
+extern void __do_global_ctors (void);
+
+/* Declare the routine which needs to get invoked at program exit time. */
extern void __do_global_dtors (void);