File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
lib/SILOptimizer/Mandatory Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -451,12 +451,12 @@ void ValueStorageMap::ValueStoragePair::dump() const {
451
451
llvm::dbgs () << " UNKNOWN!\n " ;
452
452
storage.dump ();
453
453
}
454
- void ValueStorageMap::dumpProjections (SILValue value) {
454
+ void ValueStorageMap::dumpProjections (SILValue value) const {
455
455
for (auto *pair : getProjections (value)) {
456
456
pair->dump ();
457
457
}
458
458
}
459
- void ValueStorageMap::dump () {
459
+ void ValueStorageMap::dump () const {
460
460
llvm::dbgs () << " ValueStorageMap:\n " ;
461
461
for (unsigned ordinal : indices (valueVector)) {
462
462
auto &valStoragePair = valueVector[ordinal];
Original file line number Diff line number Diff line change @@ -396,8 +396,8 @@ class ValueStorageMap {
396
396
bool isComposingUseProjection (Operand *oper) const ;
397
397
398
398
#ifndef NDEBUG
399
- void dumpProjections (SILValue value);
400
- void dump ();
399
+ void dumpProjections (SILValue value) const ;
400
+ void dump () const ;
401
401
#endif
402
402
};
403
403
You can’t perform that action at this time.
0 commit comments