SFTI(M, Y)

Purpose

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.

Class

Subroutine

Argument type and attributes

M
must be of type INTEGER(4).
Y
must be of type REAL(8).

Examples

...
integer*4 :: m
real*8 :: x

x = z"00000000abcd0001"
call sfti(m, x) ! m = z"abcd0001"
..