mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-02 21:31:41 +00:00
[PM] Hide a function we only use in an assert behind NDEBUG.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225258 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0df89054c0
commit
147ebc77ff
@ -102,6 +102,7 @@ void llvm::registerFunctionAnalyses(FunctionAnalysisManager &FAM) {
|
||||
#include "PassRegistry.def"
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
static bool isModulePassName(StringRef Name) {
|
||||
#define MODULE_PASS(NAME, CREATE_PASS) if (Name == NAME) return true;
|
||||
#define MODULE_ANALYSIS(NAME, CREATE_PASS) \
|
||||
@ -111,6 +112,7 @@ static bool isModulePassName(StringRef Name) {
|
||||
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
|
||||
static bool isCGSCCPassName(StringRef Name) {
|
||||
#define CGSCC_PASS(NAME, CREATE_PASS) if (Name == NAME) return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user