diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-23 21:47:43 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-23 21:47:43 +0000 |
commit | fe5bd16ae2ac904b5c14c1e2eff932f81f7b0635 (patch) | |
tree | 9d92c28172cfd94343a84010c040cd666e3d5909 /gcc | |
parent | 45b8431cf074946006408d422a34ae8c59b8d395 (diff) | |
download | gcc-fe5bd16ae2ac904b5c14c1e2eff932f81f7b0635.tar.gz |
* crtstuff.c (init_dummy): Keep the epilogue in the init
section for non-ELF systems.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17464 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/crtstuff.c | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 35f953494d8..029207164e6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Fri Jan 23 22:48:24 1998 Jeffrey A Law (law@cygnus.com) + + * crtstuff.c (init_dummy): Keep the epilogue in the init + section for non-ELF systems. + Fri Jan 23 23:28:59 1998 J"orn Rennecke <amylaar@cygnus.co.uk> * sh.md (movqi_i+1): New peephole. diff --git a/gcc/crtstuff.c b/gcc/crtstuff.c index 362a2a60ef2..be555b02aed 100644 --- a/gcc/crtstuff.c +++ b/gcc/crtstuff.c @@ -392,7 +392,6 @@ __do_global_ctors_aux () /* prologue goes in .text section */ #ifdef FORCE_INIT_SECTION_ALIGN FORCE_INIT_SECTION_ALIGN; #endif - asm (TEXT_SECTION_ASM_OP); } /* epilogue and body go in .init section */ #endif /* OBJECT_FORMAT_ELF */ |