Fix the way AliasSet::print prints "may alias".

llvm-svn: 50051
This commit is contained in:
Dan Gohman 2008-04-21 19:48:48 +00:00
parent a054e99fa8
commit 79fff7cf85
1 changed files with 1 additions and 1 deletions

View File

@ -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;