* spu/exit.c (_exit): Finish with an infinite loop to eliminate a

warning about this noreturn function returning.
This commit is contained in:
Ben Elliston 2007-01-09 00:54:00 +00:00
parent 8e0e8f40fb
commit 5a308d4f2d
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-01-09 Ben Elliston <bje@au.ibm.com>
* spu/exit.c (_exit): Finish with an infinite loop to eliminate a
warning about this noreturn function returning.
2007-01-04 Kazu Hirata <kazu@codesourcery.com>
Merge from newlib-csl-20060320-branch:

View File

@ -42,4 +42,7 @@ void _exit(int rc)
"1:\n"
" stop 0x2000\n"
: : "r" (rc) );
for (;;)
;
}