Simplify assertion message to avoid confusion.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72731 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Devang Patel 2009-06-02 17:26:29 +00:00
parent f41538d1b5
commit 8900bcc1ff

View File

@ -231,9 +231,7 @@ AnalysisType &Pass::getAnalysisID(const PassInfo *PI, Function &F) {
// should be a small number, we just do a linear search over a (dense)
// vector.
Pass *ResultPass = Resolver->findImplPass(this, PI, F);
assert (ResultPass &&
"getAnalysis*() called on an analysis that was not "
"'required' by pass!");
assert (ResultPass && "Unable to find requested analysis info");
// Because the AnalysisType may not be a subclass of pass (for
// AnalysisGroups), we must use dynamic_cast here to potentially adjust the