Store Floating-point to Integer
The contents of the low order 32-bits of Y are stored without conversion into M.
Valid on any PowerPC.
Subroutine
... integer*4 :: m real*8 :: x x = z"00000000abcd0001" call sfti(m, x) ! m = z"abcd0001" ..