- Rename AnalysisUsage::preservesAll to getPreservesAll & preservesCFG to

setPreservesCFG to be less confusing.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4255 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2002-10-21 20:00:28 +00:00
parent 8291e0465b
commit cb2610ea03
15 changed files with 28 additions and 27 deletions

View File

@ -569,7 +569,7 @@ namespace {
virtual bool runOnFunction(Function &F) { return doRPR(F); }
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
AU.preservesCFG();
AU.setPreservesCFG();
}
};
}