_movf_ps
This function tests the contents of a register to determine if it is zero. If it is zero, then the value is moved to another register. If it is not zero, no action occurs. The move is non-arithmetic.
double __cdecl _movf_ps(
double,
int
);
Parameters
- double
[in] The value to moved if int equals zero. - int
[in] The value that is tested to determine if it equals zero.
Return Values
If int equals zero, the result is the value of the contents of double. If not, then the result is the same value held in the register before this function call.
Remarks
The compiler translates this function into the MOVF.format
assembly instruction.
Requirements
OS Versions: Windows CE .NET 4.0 and later.
Header: Mipsintr.h.
See Also
Common Intrinsic Functions | Intrinsic Functions for MIPS Microprocessors
Last updated on Thursday, April 08, 2004
© 1992-2003 Microsoft Corporation. All rights reserved.