diff options
Diffstat (limited to 'lib/csu/amd64/crt1.c')
-rw-r--r-- | lib/csu/amd64/crt1.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/csu/amd64/crt1.c b/lib/csu/amd64/crt1.c index f1f0f7b..943b07b 100644 --- a/lib/csu/amd64/crt1.c +++ b/lib/csu/amd64/crt1.c @@ -86,15 +86,10 @@ _start(char **ap, void (*cleanup)(void)) atexit(_fini); #ifdef GCRT monstartup(&eprol, &etext); +__asm__("eprol:"); #endif _init(); exit( main(argc, argv, env) ); } -#ifdef GCRT -__asm__(".text"); -__asm__("eprol:"); -__asm__(".previous"); -#endif - __asm__(".ident\t\"$FreeBSD$\""); |