Remove unused variables. No functionality change.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@315196 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2017-10-08 21:23:02 +00:00
parent a038303fae
commit f78fbad698

View File

@ -314,7 +314,6 @@ TEST_F(BinaryStreamTest, MutableBinaryByteStreamBounds) {
// For every combination of input stream and output stream.
for (auto &Stream : Streams) {
MutableArrayRef<uint8_t> Buffer;
ASSERT_EQ(InputData.size(), Stream.Input->getLength());
// 1. Try two reads that are supposed to work. One from offset 0, and one
@ -355,7 +354,6 @@ TEST_F(BinaryStreamTest, FixedStreamArray) {
initializeInput(IntBytes, alignof(uint32_t));
for (auto &Stream : Streams) {
MutableArrayRef<uint8_t> Buffer;
ASSERT_EQ(InputData.size(), Stream.Input->getLength());
FixedStreamArray<uint32_t> Array(*Stream.Input);