diff options
author | Torok Edwin <edwintorok@gmail.com> | 2009-03-11 20:50:17 +0000 |
---|---|---|
committer | Torok Edwin <edwintorok@gmail.com> | 2009-03-11 20:50:17 +0000 |
commit | 1d9887054afed2639d1c7490bc96f1e2cc7861ea (patch) | |
tree | 5eb2b2a1f1232ab6b2a678c6885e75262174dd1e /include/llvm/Analysis/SparsePropagation.h | |
parent | 26d6e21c5361ad30f551cecaefddcaa1ed7f040f (diff) |
Make Print callable from a pass's print method: add const qualifier. No
functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66700 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/SparsePropagation.h')
-rw-r--r-- | include/llvm/Analysis/SparsePropagation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/SparsePropagation.h b/include/llvm/Analysis/SparsePropagation.h index 1476329306..1e2114840a 100644 --- a/include/llvm/Analysis/SparsePropagation.h +++ b/include/llvm/Analysis/SparsePropagation.h @@ -138,7 +138,7 @@ public: /// void Solve(Function &F); - void Print(Function &F, std::ostream &OS); + void Print(Function &F, std::ostream &OS) const; /// getLatticeState - Return the LatticeVal object that corresponds to the /// value. If an value is not in the map, it is returned as untracked, |