mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-04 01:43:06 +00:00
Add an MCInstrAnalysis version of isCall.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138305 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3f57a9a2cf
commit
6667e54296
@ -43,6 +43,10 @@ public:
|
|||||||
return Info->get(Inst.getOpcode()).isIndirectBranch();
|
return Info->get(Inst.getOpcode()).isIndirectBranch();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
virtual bool isCall(const MCInst &Inst) const {
|
||||||
|
return Info->get(Inst.getOpcode()).isCall();
|
||||||
|
}
|
||||||
|
|
||||||
virtual bool isReturn(const MCInst &Inst) const {
|
virtual bool isReturn(const MCInst &Inst) const {
|
||||||
return Info->get(Inst.getOpcode()).isReturn();
|
return Info->get(Inst.getOpcode()).isReturn();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user