Share via


_movt_ps

This function tests the contents of a register to determine if it is one. If it is one, then the value is moved to another register. If it is not one, no action occurs.

double __cdecl _movz_ps(
  double,
  int
);

Parameters

  • double
    [in] The value to moved if int equals one.
  • int
    [in] The value that is tested to determine if it equals one.

Return Values

If int equals one, 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 MOVT.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.