mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-14 19:49:36 +00:00
[BOLT][NFC] Remove unused MCPlusBuilder::isEnter
Summary: Remove unused code identified via coverage report. (cherry picked from FBD32818608)
This commit is contained in:
parent
8e632eae56
commit
b69d487a62
@ -551,11 +551,6 @@ public:
|
||||
return false;
|
||||
}
|
||||
|
||||
virtual bool isEnter(const MCInst &Inst) const {
|
||||
llvm_unreachable("not implemented");
|
||||
return false;
|
||||
}
|
||||
|
||||
virtual bool isADRP(const MCInst &Inst) const {
|
||||
llvm_unreachable("not implemented");
|
||||
return false;
|
||||
|
@ -646,10 +646,6 @@ public:
|
||||
Inst.getOpcode() == X86::LEAVE64;
|
||||
}
|
||||
|
||||
bool isEnter(const MCInst &Inst) const override {
|
||||
return Inst.getOpcode() == X86::ENTER;
|
||||
}
|
||||
|
||||
bool isMoveMem2Reg(const MCInst &Inst) const override {
|
||||
switch (Inst.getOpcode()) {
|
||||
case X86::MOV16rm:
|
||||
|
Loading…
Reference in New Issue
Block a user