diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-21 20:00:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-21 20:00:28 +0000 |
commit | cb2610ea037a17115ef3a01a6bdaab4e3cfdca27 (patch) | |
tree | 868d175bc12cc58b644aea2bea47e87cbe4933c7 /lib/Transforms/Instrumentation/TraceValues.cpp | |
parent | 8291e0465b3864050c050a61db4fcd844cc0b52e (diff) |
- 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
Diffstat (limited to 'lib/Transforms/Instrumentation/TraceValues.cpp')
-rw-r--r-- | lib/Transforms/Instrumentation/TraceValues.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Instrumentation/TraceValues.cpp b/lib/Transforms/Instrumentation/TraceValues.cpp index f17932b2eb..431b9bb83d 100644 --- a/lib/Transforms/Instrumentation/TraceValues.cpp +++ b/lib/Transforms/Instrumentation/TraceValues.cpp @@ -78,7 +78,7 @@ namespace { bool runOnFunction(Function &F); virtual void getAnalysisUsage(AnalysisUsage &AU) const { - AU.preservesCFG(); + AU.setPreservesCFG(); } }; |