mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Stop casting away const qualifier needlessly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163258 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -550,7 +550,7 @@ void AliasSetTracker::copyValue(Value *From, Value *To) {
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
void AliasSet::print(raw_ostream &OS) const {
|
||||
OS << " AliasSet[" << (void*)this << ", " << RefCount << "] ";
|
||||
OS << " AliasSet[" << (const void*)this << ", " << RefCount << "] ";
|
||||
OS << (AliasTy == MustAlias ? "must" : "may") << " alias, ";
|
||||
switch (AccessTy) {
|
||||
case NoModRef: OS << "No access "; break;
|
||||
|
Reference in New Issue
Block a user