llvm::TargetLoweringBase::isFPExtFree

Return true if an fpext operation is free (for instance, because single-precision floating-point numbers are implicitly extended to double-precision).

Synopsis

Declared in <llvm/CodeGen/TargetLowering.h>

virtual
bool
isFPExtFree(
    EVT DestVT,
    EVT SrcVT) const;

Return Value

True if an fpext operation is free (for instance, because single-precision floating-point numbers are implicitly extended to double-precision).

Parameters

NameDescription
DestVTDestination value type after promotion.
SrcVTSource vector type.