IR: Remove unused microinstructions NegateLowWord and NegateHighWord

This commit is contained in:
MerryMage 2017-01-05 20:16:39 +00:00
parent 70f4235ee9
commit 1efd3a764d
4 changed files with 0 additions and 32 deletions

View file

@ -328,14 +328,6 @@ Value IREmitter::CountLeadingZeros(const Value& a) {
return Inst(Opcode::CountLeadingZeros, {a});
}
Value IREmitter::NegateLowWord(const Value& a) {
return Inst(Opcode::NegateLowWord, {a});
}
Value IREmitter::NegateHighWord(const Value& a) {
return Inst(Opcode::NegateHighWord, {a});
}
IREmitter::ResultAndOverflow IREmitter::SignedSaturatedAdd(const Value& a, const Value& b) {
auto result = Inst(Opcode::SignedSaturatedAdd, {a, b});
auto overflow = Inst(Opcode::GetOverflowFromOp, {result});