| |||
| Home > NEON and VFP Programming > VFP instructions > VCVT (between single-precision and double-precision) | |||
Convert between single-precision and double-precision numbers.
VCVT is always scalar.
VCVT{cond}.F64.F32Dd,Sm
VCVT{cond}.F32.F64Sd,Dm
where:
condis an optional condition code.
Ddis a double-precision register for the result.
Smis a single-precision register holding the operand.
Sdis a single-precision register for the result.
Dmis a double-precision register holding the operand.
These instructions convert the single-precision value in to
double-precision and places the result in Sm,
or the double-precision value in Dd to
single-precision and place the result in Dm.Sd
These instructions can produce Invalid Operation, Input Denormal, Overflow, Underflow, or Inexact exceptions.