Index: include/llvm/Bitcode/NaCl/NaClBitstreamReader.h |
diff --git a/include/llvm/Bitcode/NaCl/NaClBitstreamReader.h b/include/llvm/Bitcode/NaCl/NaClBitstreamReader.h |
index 4304dbae5400244498f0b6075c1b32112ead7444..92db870c6eadc3bc3d9281cce9d3bba8e9bc8f2d 100644 |
--- a/include/llvm/Bitcode/NaCl/NaClBitstreamReader.h |
+++ b/include/llvm/Bitcode/NaCl/NaClBitstreamReader.h |
@@ -363,8 +363,7 @@ public: |
// Read the next word from the stream. |
uint8_t Array[sizeof(word_t)] = {0}; |
- BitStream->getBitcodeBytes().readBytes(NextChar, sizeof(Array), |
- Array, NULL); |
+ BitStream->getBitcodeBytes().readBytes(NextChar, sizeof(Array), Array); |
// Handle big-endian byte-swapping if necessary. |
support::detail::packed_endian_specific_integral |