Add casts

llvm-svn: 1328
This commit is contained in:
Chris Lattner 2001-11-26 16:46:09 +00:00
parent edbf52c7f9
commit 70af97db27
1 changed files with 2 additions and 2 deletions

View File

@ -130,13 +130,13 @@ public:
// to the new type.
//
virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy) {
assert(get() == OldTy && "Can't refine to unknown value!");
assert(get() == (const Type*)OldTy && "Can't refine to unknown value!");
// Check to see if the type just became concrete. If so, we have to
// removeUser to get off its AbstractTypeUser list
removeUserFromConcrete();
if (OldTy != NewTy)
if ((const Type*)OldTy != NewTy)
PATypeHandle<TypeSC>::operator=((const TypeSC*)NewTy);
}