IR: Add opcode for packed word->f32 conversions

This commit is contained in:
Lioncash
2018-04-19 15:12:00 -04:00
committed by MerryMage
parent b8587d8e34
commit 38fa984b53
4 changed files with 15 additions and 0 deletions

View File

@@ -1383,6 +1383,10 @@ U128 IREmitter::FPVectorSub(size_t esize, const U128& a, const U128& b) {
return {};
}
U128 IREmitter::FPVectorS32ToSingle(const U128& a) {
return Inst<U128>(Opcode::FPVectorS32ToSingle, a);
}
void IREmitter::Breakpoint() {
Inst(Opcode::Breakpoint);
}