mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-02 17:29:03 +00:00
Remove debug info :(
llvm-svn: 1280
This commit is contained in:
parent
a6ada3716c
commit
7d0854c71e
@ -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: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user