Browse Source

2006-12-13 Ben Elliston <bje@au.ibm.com>


			
			
				drow-reverse-20070409-branch
			
			
		
Jeff Johnston 20 years ago
parent
commit
057914fee4
  1. 5
      libgloss/ChangeLog
  2. 4
      libgloss/libnosys/_exit.c

5
libgloss/ChangeLog

@ -1,3 +1,8 @@
2006-12-13 Ben Elliston <bje@au.ibm.com>
* libnosys/_exit.c (_exit): Finish with an infinite loop to
eliminate a warning about this noreturn function returning.
2006-12-13 Sa Liu <saliu@de.ibm.com>
* spu/access.c: New file

4
libgloss/libnosys/_exit.c

@ -12,4 +12,8 @@ _DEFUN (_exit, (rc),
/* Default stub just causes a divide by 0 exception. */
int x = rc / INT_MAX;
x = 4 / x;
/* Convince GCC that this function never returns. */
for (;;)
;
}

Loading…
Cancel
Save