change ENTRY & ASENTRY to allow setting the register save mask
[unix-history] / usr / src / lib / libc / vax / gen / frexp.s
/* frexp.s 4.2 84/11/01 */
/* C library -- frexp(value, eptr) */
#include "DEFS.h"
ENTRY(frexp, 0)
movd 4(ap),r0 # (r0,r1) := value
extzv $7,$8,r0,*12(ap) # Fetch exponent
jeql 1f # If exponent zero, we're done
subl2 $128,*12(ap) # Bias the exponent appropriately
insv $128,$7,$8,r0 # Force result exponent to biased 0
1:
ret