summaryrefslogtreecommitdiff
path: root/llvm/lib/IR/Pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/IR/Pass.cpp')
-rw-r--r--llvm/lib/IR/Pass.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/IR/Pass.cpp b/llvm/lib/IR/Pass.cpp
index fe0bfd81a81e..716d9d546f4f 100644
--- a/llvm/lib/IR/Pass.cpp
+++ b/llvm/lib/IR/Pass.cpp
@@ -62,7 +62,8 @@ static std::string getDescription(const Module &M) {
bool ModulePass::skipModule(Module &M) const {
OptPassGate &Gate = M.getContext().getOptPassGate();
- return Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(M));
+ return Gate.isEnabled() &&
+ !Gate.shouldRunPass(this->getPassName(), getDescription(M));
}
bool Pass::mustPreserveAnalysisID(char &AID) const {
@@ -172,7 +173,8 @@ static std::string getDescription(const Function &F) {
bool FunctionPass::skipFunction(const Function &F) const {
OptPassGate &Gate = F.getContext().getOptPassGate();
- if (Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(F)))
+ if (Gate.isEnabled() &&
+ !Gate.shouldRunPass(this->getPassName(), getDescription(F)))
return true;
if (F.hasOptNone()) {