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/ReaderInternals.h | |
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/ReaderInternals.h')
-rw-r--r-- | llvm/lib/Bytecode/Reader/ReaderInternals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bytecode/Reader/ReaderInternals.h b/llvm/lib/Bytecode/Reader/ReaderInternals.h index 9044c0f6c58..a64794a7018 100644 --- a/llvm/lib/Bytecode/Reader/ReaderInternals.h +++ b/llvm/lib/Bytecode/Reader/ReaderInternals.h @@ -137,7 +137,7 @@ private: bool ParseBasicBlock (const unsigned char *&Buf, const unsigned char *End, BasicBlock *&); bool ParseInstruction (const unsigned char *&Buf, const unsigned char *End, - Instruction *&, BasicBlock *BB /*HACK*/); + Instruction *&); bool ParseRawInst (const unsigned char *&Buf, const unsigned char *End, RawInst &); |