From: Jeffrey Oldham Date: Mon, 20 Aug 2001 15:24:24 +0000 (+0000) Subject: crtstuff.c (__do_global_ctors): Fix typo in preprocessing command. X-Git-Tag: prereleases/libstdc++-3.0.95~2540 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8a6b916040217a7bc6d5121ceb0c8fe91ffe78f;p=thirdparty%2Fgcc.git crtstuff.c (__do_global_ctors): Fix typo in preprocessing command. 2001-08-20 Jeffrey Oldham * crtstuff.c (__do_global_ctors): Fix typo in preprocessing command. From-SVN: r45051 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ac9cee0c2585..611d9940a30a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-08-20 Jeffrey Oldham + + * crtstuff.c (__do_global_ctors): Fix typo in preprocessing + command. + 2001-08-20 Matt Kraai * gcc.c (make_relative_prefix): Allocate a sufficiently large diff --git a/gcc/crtstuff.c b/gcc/crtstuff.c index 3c25db475ef6..2e8a2d62acf0 100644 --- a/gcc/crtstuff.c +++ b/gcc/crtstuff.c @@ -503,7 +503,7 @@ void __do_global_ctors (void) { func_ptr *p; -#if defind(EH_FRAME_SECTION_NAME) || defined(JCR_SECTION_NAME) +#if defined(EH_FRAME_SECTION_NAME) || defined(JCR_SECTION_NAME) __frame_dummy (); #endif for (p = __CTOR_END__ - 1; *p != (func_ptr) -1; p--)