mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 00:32:55 +00:00
Fix the way AliasSet::print prints "may alias".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50051 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
037c781de7
commit
92c7b65c91
@ -517,7 +517,7 @@ void AliasSetTracker::copyValue(Value *From, Value *To) {
|
||||
|
||||
void AliasSet::print(std::ostream &OS) const {
|
||||
OS << " AliasSet[" << (void*)this << "," << RefCount << "] ";
|
||||
OS << (AliasTy == MustAlias ? "must" : "may ") << " alias, ";
|
||||
OS << (AliasTy == MustAlias ? "must" : "may") << " alias, ";
|
||||
switch (AccessTy) {
|
||||
case NoModRef: OS << "No access "; break;
|
||||
case Refs : OS << "Ref "; break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user