Remove debug info :(

llvm-svn: 1280
This commit is contained in:
Chris Lattner 2001-11-12 21:52:57 +00:00
parent a6ada3716c
commit 7d0854c71e

View File

@ -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: {