From de5b06b3e15be85b92ffef65413acf7d3262069e Mon Sep 17 00:00:00 2001 From: Sanjiv Gupta Date: Sat, 1 Nov 2008 10:57:12 +0000 Subject: [PATCH] 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 --- lib/VMCore/Type.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; } -- 2.34.1