From: Sanjiv Gupta Date: Sat, 1 Nov 2008 10:57:12 +0000 (+0000) Subject: Reverting back 58505. Will commit it once I have the bc reader/writer/docs X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=de5b06b3e15be85b92ffef65413acf7d3262069e;p=oota-llvm.git 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 --- diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index 14f09f04567..be211949799 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -1516,8 +1516,7 @@ void PointerType::typeBecameConcrete(const DerivedType *AbsTy) { bool SequentialType::indexValid(const Value *V) const { if (const IntegerType *IT = dyn_cast(V->getType())) - return IT->getBitWidth() == 16 || - IT->getBitWidth() == 32 || IT->getBitWidth() == 64; + return IT->getBitWidth() == 32 || IT->getBitWidth() == 64; return false; }