Delete dead code. NFC.

llvm-svn: 221770
This commit is contained in:
Rafael Espindola 2014-11-12 04:31:19 +00:00
parent b6b141d601
commit d6bce443d7
1 changed files with 0 additions and 6 deletions

View File

@ -230,12 +230,6 @@ public:
static_cast<uint64_t>(pos - 1)); static_cast<uint64_t>(pos - 1));
} }
uint32_t getWord(size_t pos) {
uint8_t buf[4] = { 0xFF, 0xFF, 0xFF, 0xFF };
BitStream->getBitcodeBytes().readBytes(pos, sizeof(buf), buf);
return *reinterpret_cast<support::ulittle32_t *>(buf);
}
bool AtEndOfStream() { bool AtEndOfStream() {
return BitsInCurWord == 0 && isEndPos(NextChar); return BitsInCurWord == 0 && isEndPos(NextChar);
} }