| 453 | |
| 454 | template<IR::OpSize DstElementSize> |
| 455 | void OpDispatchBuilder::InsertCVTGPR_To_FPR(OpcodeArgs) { |
| 456 | const auto DstSize = GetGuestVectorLength(); |
| 457 | auto Result = InsertCVTGPR_To_FPRImpl(Op, DstSize, DstElementSize, Op->Dest, Op->Src[0], false); |
| 458 | StoreResult_WithOpSize(FPRClass, Op, Op->Dest, Result, DstSize, OpSize::iInvalid); |
| 459 | } |
| 460 | |
| 461 | template void OpDispatchBuilder::InsertCVTGPR_To_FPR<OpSize::i32Bit>(OpcodeArgs); |
| 462 | template void OpDispatchBuilder::InsertCVTGPR_To_FPR<OpSize::i64Bit>(OpcodeArgs); |
nothing calls this directly
no outgoing calls
no test coverage detected