aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Reader/Reader.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-09-08 18:04:16 +0000
committerChris Lattner <sabre@nondot.org>2003-09-08 18:04:16 +0000
commit09bd0257623e115f06ccc4b732f30418c879ee19 (patch)
treec41690211a6a060e3ac6863403eaf762e5de88e7 /lib/Bytecode/Reader/Reader.cpp
parent0fe56f42ab5b1035b20714a55da5cebdd95a3c25 (diff)
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8395 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Reader/Reader.cpp')
-rw-r--r--lib/Bytecode/Reader/Reader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bytecode/Reader/Reader.cpp b/lib/Bytecode/Reader/Reader.cpp
index 3076f2032c..8a56f228b4 100644
--- a/lib/Bytecode/Reader/Reader.cpp
+++ b/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;
}