[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/TraceValues.cpp

Chris Lattner lattner at cs.uiuc.edu
Mon Oct 21 15:01:03 PDT 2002


Changes in directory llvm/lib/Transforms/Instrumentation:

TraceValues.cpp updated: 1.50 -> 1.51

---
Log message:

  - Rename AnalysisUsage::preservesAll to getPreservesAll & preservesCFG to
    setPreservesCFG to be less confusing.


---
Diffs of the changes:

Index: llvm/lib/Transforms/Instrumentation/TraceValues.cpp
diff -u llvm/lib/Transforms/Instrumentation/TraceValues.cpp:1.50 llvm/lib/Transforms/Instrumentation/TraceValues.cpp:1.51
--- llvm/lib/Transforms/Instrumentation/TraceValues.cpp:1.50	Thu Oct 17 11:22:08 2002
+++ llvm/lib/Transforms/Instrumentation/TraceValues.cpp	Mon Oct 21 15:00:23 2002
@@ -78,7 +78,7 @@
     bool runOnFunction(Function &F);
 
     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
-      AU.preservesCFG();
+      AU.setPreservesCFG();
     }
   };
 





More information about the llvm-commits mailing list