diff options
| author | Edwin Török <edwintorok@gmail.com> | 2009-03-11 20:50:17 +0000 |
|---|---|---|
| committer | Edwin Török <edwintorok@gmail.com> | 2009-03-11 20:50:17 +0000 |
| commit | c97d93239ff8adf83edf975bf38bf21850c700d4 (patch) | |
| tree | 5eb2b2a1f1232ab6b2a678c6885e75262174dd1e /include/llvm/Analysis/SparsePropagation.h | |
| parent | 84363ff202f0c71a90363ca67b5797249e607825 (diff) | |
| download | external_llvm-c97d93239ff8adf83edf975bf38bf21850c700d4.zip external_llvm-c97d93239ff8adf83edf975bf38bf21850c700d4.tar.gz external_llvm-c97d93239ff8adf83edf975bf38bf21850c700d4.tar.bz2 | |
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 1476329..1e21148 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, |
