diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2007-05-03 01:19:45 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2007-05-03 01:19:45 +0000 |
commit | a562045661ae361f2a8a40089f309d4acc875f09 (patch) | |
tree | 50091539e4180f66a3b0d5aebebc61feadfd42b3 | |
parent | c7e9b095ac5c2b1a4af9063f74aca079b1eb9044 (diff) | |
download | cygnal-a562045661ae361f2a8a40089f309d4acc875f09.tar.gz cygnal-a562045661ae361f2a8a40089f309d4acc875f09.tar.bz2 cygnal-a562045661ae361f2a8a40089f309d4acc875f09.zip |
* m68k/fido-_exit.c (_exit): Use stop #0x700.
-rw-r--r-- | libgloss/ChangeLog | 9 | ||||
-rw-r--r-- | libgloss/m68k/fido-_exit.c | 2 |
2 files changed, 7 insertions, 4 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index a77a66bde..e796c1b3f 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,8 +1,11 @@ +2007-05-03 Kazu Hirata <kazu@codesourcery.com> + + * m68k/fido-_exit.c (_exit): Use stop #0x700. + 2007-04-27 Kazu Hirata <kazu@codesourcery.com> - * libgloss/m68k/fido.sc: Catch .text.*, .rodata.*, .data.*, - .bss.*, .ctor.*, and .dtor.*. Wrap ctor/dtor-related sections - with KEEP. + * m68k/fido.sc: Catch .text.*, .rodata.*, .data.*, .bss.*, + .ctor.*, and .dtor.*. Wrap ctor/dtor-related sections with KEEP. 2007-04-04 Patrick Mansfield <patmans@us.ibm.com> diff --git a/libgloss/m68k/fido-_exit.c b/libgloss/m68k/fido-_exit.c index 3f920f067..08a1542cc 100644 --- a/libgloss/m68k/fido-_exit.c +++ b/libgloss/m68k/fido-_exit.c @@ -19,5 +19,5 @@ void _exit (int code) { while (1) - asm volatile ("stop #0"); + asm volatile ("stop #0x700"); } |