Reverting back 58505. Will commit it once I have the bc reader/writer/docs

ready.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58547 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Sanjiv Gupta 2008-11-01 10:57:12 +00:00
parent 7ab1fc1490
commit de5b06b3e1

View File

@ -1516,8 +1516,7 @@ void PointerType::typeBecameConcrete(const DerivedType *AbsTy) {
bool SequentialType::indexValid(const Value *V) const {
if (const IntegerType *IT = dyn_cast<IntegerType>(V->getType()))
return IT->getBitWidth() == 16 ||
IT->getBitWidth() == 32 || IT->getBitWidth() == 64;
return IT->getBitWidth() == 32 || IT->getBitWidth() == 64;
return false;
}