diff options
author | David Blaikie <dblaikie@gmail.com> | 2012-05-28 18:23:36 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2012-05-28 18:23:36 +0000 |
commit | 1ab17ed57e388450a2fb4465c69894353b9caa40 (patch) | |
tree | 4442ae52147284671d2ec1763b1a13266a7cd0c6 /llvm/lib/Bitcode/Reader/BitcodeReader.cpp | |
parent | 9bf897e696b8be90432ee14d37da69b1720ae9b7 (diff) | |
download | bcm5719-llvm-1ab17ed57e388450a2fb4465c69894353b9caa40.tar.gz bcm5719-llvm-1ab17ed57e388450a2fb4465c69894353b9caa40.zip |
Remove unused variable.
llvm-svn: 157586
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index 0e78dce6afe..e58af0eae21 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/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>(ConstantInt::get(OpTy, High)); CaseBuilder.add(IntItem::fromType(OpTy, Low), IntItem::fromType(OpTy, High)); |