Follow the pattern of all other atu's

llvm-svn: 8340
This commit is contained in:
Chris Lattner 2003-09-03 16:01:54 +00:00
parent b89d2afab1
commit 53db94da05
1 changed files with 2 additions and 6 deletions

View File

@ -110,12 +110,8 @@ void BytecodeParser::refineAbstractType(const DerivedType *OldType,
"Can't refine a type I don't know about!");
}
if (OldType == NewType) {
assert(!OldType->isAbstract());
I->removeUserFromConcrete();
} else {
*I = NewType; // Update to point to new, more refined type.
}
I->removeUserFromConcrete();
*I = NewType; // Update to point to new, more refined type.
}