mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
"Unable to schedule <A> required by <B>" is more helpful then
"Unable to handle Pass that requires lower level Analysis pass" git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51892 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e62f750784
commit
c0c33f5e2c
@ -930,7 +930,11 @@ void PMDataManager::addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass) {
|
||||
// When Pass manager is not able to order required analysis info, Pass manager
|
||||
// checks whether any lower level manager will be able to provide this
|
||||
// analysis info on demand or not.
|
||||
assert (0 && "Unable to handle Pass that requires lower level Analysis pass");
|
||||
#ifndef NDEBUG
|
||||
cerr << "Unable to schedule " << RequiredPass->getPassName();
|
||||
cerr << " required by " << P->getPassName() << "\n";
|
||||
#endif
|
||||
assert (0 && "Unable to schedule pass");
|
||||
}
|
||||
|
||||
// Destructor
|
||||
|
Loading…
Reference in New Issue
Block a user