 f14fb60209
			
		
	
	
		f14fb60209
		
	
	
	
	
		
			
			* Updating common/lib * Updating lib/csu * Updating lib/libc * Updating libexec/ld.elf_so * Corrected test on __minix in featuretest to actually follow the meaning of the comment. * Cleaned up _REENTRANT-related defintions. * Disabled -D_REENTRANT for libfetch * Removing some unneeded __NBSD_LIBC defines and tests Change-Id: Ic1394baef74d11b9f86b312f5ff4bbc3cbf72ce2
		
			
				
	
	
		
			24 lines
		
	
	
		
			369 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			369 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
| /*	$NetBSD: fpgetround.S,v 1.6 2011/09/30 23:42:00 christos Exp $	*/
 | |
| 
 | |
| /*
 | |
|  * Written by J.T. Conklin, Apr 4, 1995
 | |
|  * Public domain.
 | |
|  */
 | |
| 
 | |
| #include <machine/asm.h>
 | |
| 
 | |
| /*
 | |
|  * XXX load only x87 state.
 | |
|  */
 | |
| 
 | |
| #ifdef WEAK_ALIAS
 | |
| WEAK_ALIAS(fpgetround, _fpgetround)
 | |
| ENTRY(_fpgetround)
 | |
| #else
 | |
| ENTRY(fpgetround)
 | |
| #endif
 | |
| 	fnstcw -4(%esp)
 | |
| 	movl -4(%esp), %eax
 | |
| 	andl $0x00000c00, %eax
 | |
| 	ret
 |