mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-04 13:44:31 +01:00
IR: Remove unused microinstructions NegateLowWord and NegateHighWord
This commit is contained in:
parent
70f4235ee9
commit
1efd3a764d
4 changed files with 0 additions and 32 deletions
|
|
@ -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});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue