Skip to content
Snippets Groups Projects
Commit 57f2326d authored by mc2zk's avatar mc2zk
Browse files

Changing Instruction ID to decimal format to facilitate mapping between dump_map.log and zipr.map.

Former-commit-id: 8f8bf77b908c0624566695e8b1fb84644c32ac68
parent 683430b5
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@ int main(int argc, char **argv)
{
Instruction_t* insn=*it;
assert(insn);
cout<<"\t0x"<<hex<<insn->GetBaseID()<<"\t"<<hex<<insn->GetAddress()->GetVirtualOffset()
cout<<"\t"<<dec<<insn->GetBaseID()<<"\t"<<hex<<insn->GetAddress()->GetVirtualOffset()
<<"\t";
if(insn->GetFunction() && insn->GetFunction()->GetEntryPoint())
cout<<"0x"<<hex<<insn->GetFunction()->GetEntryPoint()->GetBaseID();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment