We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cf6d41 commit d48df5eCopy full SHA for d48df5e
include/remill/BC/Compat/CallSite.h
@@ -42,7 +42,6 @@ struct CallSite : private ::llvm::CallSite {
42
* as well.
43
*/
44
using parent::isCall;
45
- using parent::isInvoke;
46
using parent::parent;
47
using parent::operator bool;
48
using parent::getCalledFunction;
@@ -69,10 +68,6 @@ struct CallSite {
69
68
CallSite(::llvm::User *user)
70
: CallSite(::llvm::dyn_cast_or_null<::llvm::Instruction>(user)) {}
71
72
- bool isInvoke() const {
73
- return cb && ::llvm::isa<::llvm::InvokeInst>(*cb);
74
- }
75
-
76
bool isCall() const {
77
return cb && ::llvm::isa<::llvm::CallInst>(*cb);
78
}
0 commit comments