mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-11-03 20:53:13 +03:00 
			
		
		
		
	entered into RCS
This commit is contained in:
		@@ -1,4 +1,4 @@
 | 
				
			|||||||
/* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
 | 
					/* Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
 | 
				
			||||||
This file is part of the GNU C Library.
 | 
					This file is part of the GNU C Library.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
The GNU C Library is free software; you can redistribute it and/or
 | 
					The GNU C Library is free software; you can redistribute it and/or
 | 
				
			||||||
@@ -140,7 +140,7 @@ __m81_u(modf)(double __value, double *__iptr)
 | 
				
			|||||||
  return __value - __modf_int;
 | 
					  return __value - __modf_int;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
extern __inline int
 | 
					extern __inline __CONSTVALUE int
 | 
				
			||||||
__m81_u(__isinf)(double __value)
 | 
					__m81_u(__isinf)(double __value)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  /* There is no branch-condition for infinity,
 | 
					  /* There is no branch-condition for infinity,
 | 
				
			||||||
@@ -151,7 +151,7 @@ __m81_u(__isinf)(double __value)
 | 
				
			|||||||
  return (__fpsr & (2 << (3 * 8))) ? (__value < 0 ? -1 : 1) : 0;
 | 
					  return (__fpsr & (2 << (3 * 8))) ? (__value < 0 ? -1 : 1) : 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
extern __inline int
 | 
					extern __inline __CONSTVALUE int
 | 
				
			||||||
__m81_u(__isnan)(double __value)
 | 
					__m81_u(__isnan)(double __value)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  char __result;
 | 
					  char __result;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -19,8 +19,8 @@ Cambridge, MA 02139, USA.  */
 | 
				
			|||||||
#include <sysdep.h>
 | 
					#include <sysdep.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ENTRY (syscall)
 | 
					ENTRY (syscall)
 | 
				
			||||||
	moveal sp@+, a0		/* Pop return address into A0.  */
 | 
						movel sp@+, a0		/* Pop return address into A0.  */
 | 
				
			||||||
	DO_CALL (sp@, 0)	/* Do system call.  */
 | 
						DO_CALL (sp@, 0)	/* Do system call.  */
 | 
				
			||||||
	jmp a0@			/* Return to A0.  */
 | 
						jmp a0@			/* Return to A0.  */
 | 
				
			||||||
error:	moveal a0, sp@-		/* Error; push return address */
 | 
					error:	movel a0, sp@-		/* Error; push return address */
 | 
				
			||||||
	jmp syscall_error	/* and jump to error handler.  */
 | 
						jmp syscall_error	/* and jump to error handler.  */
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user