SFTI(M, Y)

Purpose

Store Floating-point to Integer

The contents of the low order 32-bits of Y are stored without conversion into the word of 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"
..
IBM Copyright 2003