diff options
author | Tom Wood <wood@gnu.org> | 1992-04-13 17:26:01 +0000 |
---|---|---|
committer | Tom Wood <wood@gnu.org> | 1992-04-13 17:26:01 +0000 |
commit | 3391e1bc78ab135f11a25cda9e8e6fc9ff521440 (patch) | |
tree | ce6dd8b1c26dd44164d22443f175945e1dd6c4c2 | |
parent | 8aada4ade08634055b789ad4de86a2589ef7fdf7 (diff) | |
download | gcc-3391e1bc78ab135f11a25cda9e8e6fc9ff521440.zip gcc-3391e1bc78ab135f11a25cda9e8e6fc9ff521440.tar.gz gcc-3391e1bc78ab135f11a25cda9e8e6fc9ff521440.tar.bz2 |
entered into RCS
From-SVN: r736
-rw-r--r-- | gcc/config/m88k/sysv3.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/config/m88k/sysv3.h b/gcc/config/m88k/sysv3.h index 0662aaa..f3ce335 100644 --- a/gcc/config/m88k/sysv3.h +++ b/gcc/config/m88k/sysv3.h @@ -69,13 +69,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ __do_global_dtors. */ #define HAVE_ATEXIT -#if (STACK_BOUNDARY / BITS_PER_UNIT) == 16 && REG_PARM_STACK_SPACE (0) == 32 #define CTOR_LIST_BEGIN \ asm (INIT_SECTION_ASM_OP); \ - asm ("\tsubu\t r31,r31,16"); \ - asm ("\tst\t r0,r31,32"); + asm ("\tsubu\t r31,r31,16"); /* (STACK_BOUNDARY / BITS_PER_UNIT) == 16 */ \ + asm ("\tst\t r0,r31,32"); /* REG_PARM_STACK_SPACE (0) == 32 */ #define CTOR_LIST_END -#endif /* ASM_OUTPUT_CONSTRUCTOR outputs code into the .init section to push the address of the constructor. This becomes the body of __do_global_ctors |