diff options
Diffstat (limited to 'gcc/crtstuff.c')
-rw-r--r-- | gcc/crtstuff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/crtstuff.c b/gcc/crtstuff.c index 3c25db475ef..2e8a2d62acf 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--) |