mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Add assertion checks to nail bugs early.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3424 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1d63a167ec
commit
03e26ba35b
@ -39,6 +39,7 @@ public:
|
||||
}
|
||||
template<class PassClass>
|
||||
AnalysisUsage &addRequired() {
|
||||
assert(Pass::getClassPassInfo<PassClass>() && "Pass class not registered!");
|
||||
Required.push_back(Pass::getClassPassInfo<PassClass>());
|
||||
return *this;
|
||||
}
|
||||
@ -53,6 +54,7 @@ public:
|
||||
|
||||
template<class PassClass>
|
||||
AnalysisUsage &addPreserved() {
|
||||
assert(Pass::getClassPassInfo<PassClass>() && "Pass class not registered!");
|
||||
Preserved.push_back(Pass::getClassPassInfo<PassClass>());
|
||||
return *this;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user