Remove a gross hack that was there to support bytecode files that are over a year old.

If you still have these suckers laying around, you have GOT to rebuild them.  geeze.

llvm-svn: 8395
This commit is contained in:
Chris Lattner
2003-09-08 18:04:16 +00:00
parent 8e8593a2c4
commit 53bd0b24f2
3 changed files with 12 additions and 65 deletions

View File

@@ -222,7 +222,7 @@ bool BytecodeParser::ParseBasicBlock(const unsigned char *&Buf,
while (Buf < EndBuf) {
Instruction *Inst;
if (ParseInstruction(Buf, EndBuf, Inst, /*HACK*/BB)) {
if (ParseInstruction(Buf, EndBuf, Inst)) {
delete BB;
return true;
}