Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2007-05-03 05:19:45 +0400
committerKazu Hirata <kazu@codesourcery.com>2007-05-03 05:19:45 +0400
commita562045661ae361f2a8a40089f309d4acc875f09 (patch)
tree50091539e4180f66a3b0d5aebebc61feadfd42b3 /libgloss
parentc7e9b095ac5c2b1a4af9063f74aca079b1eb9044 (diff)
* m68k/fido-_exit.c (_exit): Use stop #0x700.
Diffstat (limited to 'libgloss')
-rw-r--r--libgloss/ChangeLog9
-rw-r--r--libgloss/m68k/fido-_exit.c2
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");
}