diff options
author | Anthony Green <green@cygnus.com> | 1997-12-10 20:36:00 +0000 |
---|---|---|
committer | Anthony Green <green@gcc.gnu.org> | 1997-12-10 20:36:00 +0000 |
commit | 8587487b11704d61da546b5b791fcdd6374bfa4c (patch) | |
tree | c0e89f0a58f2e5aeee928e8d7d6ad5d5c6d8e768 | |
parent | c6c00ce60bd72b41e5bf6f05a0a19353daca6212 (diff) | |
download | gcc-8587487b11704d61da546b5b791fcdd6374bfa4c.zip gcc-8587487b11704d61da546b5b791fcdd6374bfa4c.tar.gz gcc-8587487b11704d61da546b5b791fcdd6374bfa4c.tar.bz2 |
Fixed typo.
From-SVN: r17036
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/crtstuff.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3bee0b3..e06b369 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Wed Dec 10 12:30:18 1997 Anthony Green <green@cygnus.com> + + * crtstuff.c (__do_global_ctors): Fix typo. + Tue Dec 9 09:43:59 1997 Manfred Hollstein <manfred@s-direktnet.de> * toplev.c (main): Check HAVE_GETRLIMIT and HAVE_SETRLIMIT in addition diff --git a/gcc/crtstuff.c b/gcc/crtstuff.c index c0d0649..50964a8 100644 --- a/gcc/crtstuff.c +++ b/gcc/crtstuff.c @@ -394,7 +394,7 @@ __do_global_ctors () { func_ptr *p; #ifdef EH_FRAME_SECTION_ASM_OP - static struct oobject object; + static struct object object; __register_frame (__EH_FRAME_BEGIN__, &object); #endif for (p = __CTOR_END__ - 1; *p != (func_ptr) -1; p--) |