diff options
author | Chris Lattner <sabre@nondot.org> | 2001-11-12 21:52:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-11-12 21:52:57 +0000 |
commit | 7e42584354ea06b2b1c4c6ca6183c0a85303e643 (patch) | |
tree | 32e554b011f85db1702983130a3404cf5d4a678a /llvm/lib/Bytecode/Reader/InstructionReader.cpp | |
parent | 7c627e76321ce59dc3a418832c568bf0c2ff422c (diff) | |
download | bcm5719-llvm-7e42584354ea06b2b1c4c6ca6183c0a85303e643.tar.gz bcm5719-llvm-7e42584354ea06b2b1c4c6ca6183c0a85303e643.zip |
Remove debug info :(
llvm-svn: 1280
Diffstat (limited to 'llvm/lib/Bytecode/Reader/InstructionReader.cpp')
-rw-r--r-- | llvm/lib/Bytecode/Reader/InstructionReader.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/Bytecode/Reader/InstructionReader.cpp b/llvm/lib/Bytecode/Reader/InstructionReader.cpp index 8dc9b8d565a..d3b2bb0d091 100644 --- a/llvm/lib/Bytecode/Reader/InstructionReader.cpp +++ b/llvm/lib/Bytecode/Reader/InstructionReader.cpp @@ -379,14 +379,12 @@ bool BytecodeParser::ParseInstruction(const uchar *&Buf, const uchar *EndBuf, if (Raw.Opcode == Instruction::Load) { assert(MemAccessInst::getIndexedType(Raw.Ty, Idx) && - "Bad indices for GEP or Load!"); + "Bad indices for Load!"); Res = new LoadInst(getValue(Raw.Ty, Raw.Arg1), Idx); } else if (Raw.Opcode == Instruction::GetElementPtr) Res = new GetElementPtrInst(getValue(Raw.Ty, Raw.Arg1), Idx); else abort(); - if (!MemAccessInst::getIndexedType(Raw.Ty, Idx)) - cerr << Res; return false; } case Instruction::Store: { |