diff options
author | Chris Lattner <sabre@nondot.org> | 2003-09-08 18:04:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-09-08 18:04:16 +0000 |
commit | 53bd0b24f20c088a4dfdfb4b32b6e0d5ea3b8d50 (patch) | |
tree | 74d54b7d5f44c17332cb093246ed60753bb31036 /llvm/lib/Bytecode/Reader/Reader.cpp | |
parent | 8e8593a2c43f855bfd58f0373fedaa4753a3743c (diff) | |
download | bcm5719-llvm-53bd0b24f20c088a4dfdfb4b32b6e0d5ea3b8d50.tar.gz bcm5719-llvm-53bd0b24f20c088a4dfdfb4b32b6e0d5ea3b8d50.zip |
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
Diffstat (limited to 'llvm/lib/Bytecode/Reader/Reader.cpp')
-rw-r--r-- | llvm/lib/Bytecode/Reader/Reader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bytecode/Reader/Reader.cpp b/llvm/lib/Bytecode/Reader/Reader.cpp index 3076f2032cd..8a56f228b4b 100644 --- a/llvm/lib/Bytecode/Reader/Reader.cpp +++ b/llvm/lib/Bytecode/Reader/Reader.cpp @@ -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; } |