Use isa<> instead of dyn_cast<>.

llvm-svn: 76767
This commit is contained in:
Devang Patel 2009-07-22 18:35:25 +00:00
parent 8a27391190
commit 75094f8e83
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ void ValueEnumerator::EnumerateOperandType(const Value *V) {
EnumerateOperandType(Elem);
}
}
} else if (dyn_cast<MDString>(V))
} else if (isa<MDString>(V))
EnumerateValue(V);
}