* crt0.c (mainCRTStartup): Move call to _feinitialise from here...

* dcrt0.cc (_dll_crt0): ...to here.
This commit is contained in:
Corinna Vinschen
2011-03-17 08:40:25 +00:00
parent d2948a681d
commit b532ee08bc
3 changed files with 10 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
/* crt0.c
Copyright 2001, 2005, 2010 Red Hat, Inc.
Copyright 2001, 2005, 2010, 2011 Red Hat, Inc.
This software is a copyrighted work licensed under the terms of the
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
@@ -13,7 +13,6 @@ details. */
#include "winlean.h"
#include <sys/cygwin.h>
#include "fenv.h"
extern int main (int argc, char **argv);
@@ -25,7 +24,6 @@ mainCRTStartup ()
#ifdef __i386__
(void)__builtin_return_address(1);
asm volatile ("andl $-16,%%esp" ::: "%esp");
_feinitialise ();
#endif
cygwin_crt0 (main);