mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Constify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114574 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
38738bf1a8
commit
ba6ca6dd3b
@ -212,7 +212,7 @@ namespace llvm {
|
||||
private:
|
||||
/// ValueIsLoadPair - This is a pair<Value*, bool> where the bool is true if
|
||||
/// the dependence is a read only dependence, false if read/write.
|
||||
typedef PointerIntPair<Value*, 1, bool> ValueIsLoadPair;
|
||||
typedef PointerIntPair<const Value*, 1, bool> ValueIsLoadPair;
|
||||
|
||||
/// BBSkipFirstBlockPair - This pair is used when caching information for a
|
||||
/// block. If the pointer is null, the cache value is not a full query that
|
||||
|
Loading…
Reference in New Issue
Block a user