| 3598 | |
| 3599 | template<IR::OpSize ElementSize, IR::OpSize DstElementSize, bool Signed> |
| 3600 | void OpDispatchBuilder::ExtendVectorElements(OpcodeArgs) { |
| 3601 | Ref Result = ExtendVectorElementsImpl(Op, ElementSize, DstElementSize, Signed); |
| 3602 | StoreResult(FPRClass, Op, Result, OpSize::iInvalid); |
| 3603 | } |
| 3604 | |
| 3605 | template void OpDispatchBuilder::ExtendVectorElements<OpSize::i8Bit, OpSize::i16Bit, false>(OpcodeArgs); |
| 3606 | template void OpDispatchBuilder::ExtendVectorElements<OpSize::i8Bit, OpSize::i32Bit, false>(OpcodeArgs); |
nothing calls this directly
no outgoing calls
no test coverage detected