IR: Add IR instruction VectorZeroUpper

This commit is contained in:
MerryMage
2018-01-24 17:11:13 +00:00
parent da3e9a5704
commit 285fd22c30
4 changed files with 17 additions and 0 deletions

View File

@@ -761,6 +761,10 @@ U128 IREmitter::VectorPairedAdd64(const U128& a, const U128& b) {
return Inst<U128>(Opcode::VectorPairedAdd64, a, b);
}
U128 IREmitter::VectorZeroUpper(const U128& a) {
return Inst<U128>(Opcode::VectorZeroUpper, a);
}
U32 IREmitter::FPAbs32(const U32& a) {
return Inst<U32>(Opcode::FPAbs32, a);
}