From: David Blaikie Date: Mon, 28 May 2012 18:23:36 +0000 (+0000) Subject: Remove unused variable. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=21280e48c07422a43bf8e7d095bdfaf0c7012bd5;p=oota-llvm.git Remove unused variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157586 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Bitcode/Reader/BitcodeReader.cpp b/lib/Bitcode/Reader/BitcodeReader.cpp index 0e78dce6afe..e58af0eae21 100644 --- a/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/lib/Bitcode/Reader/BitcodeReader.cpp @@ -2254,8 +2254,6 @@ bool BitcodeReader::ParseFunctionBody(Function *F) { APInt High = ReadWideAPInt(makeArrayRef(&Record[CurIdx], ActiveWords), ValueBitWidth); - IntItemConstantIntImpl HighImpl = - cast(ConstantInt::get(OpTy, High)); CaseBuilder.add(IntItem::fromType(OpTy, Low), IntItem::fromType(OpTy, High));