Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • opensrc/zipr
  • whh8b/zipr
2 results
Show changes
Commits on Source (4)
......@@ -119,7 +119,9 @@ int main(int argc, char **argv)
const auto d=DecodedInstruction_t::factory(insn);
cout<<" "<<d->getDisassembly()<<"("<<insn->getComment()<<")"<<endl;
if(dump_icfs_flag == insn->getBaseID())
const auto is_dump_all = dump_icfs_str && dump_icfs_flag==1;
const auto is_dump_this = dump_icfs_flag == insn->getBaseID();
if(is_dump_all || is_dump_this)
dump_icfs(insn);
}
......
......@@ -2934,7 +2934,7 @@ void read_stars_xref_file(FileIR_t* firp)
void process_dynsym(FileIR_t* firp)
{
auto dynsymfile = popen("$PS_OBJDUMP -T readeh_tmp_file.exe | $PS_GREP '^[0-9]\\+' | $PS_GREP -v UND | awk '{print $1;}' | $PS_GREP -v '^$'", "r");
auto dynsymfile = popen("$PS_OBJDUMP -T a.ncexe | $PS_GREP '^[0-9]\\+' | $PS_GREP -v UND | awk '{print $1;}' | $PS_GREP -v '^$'", "r");
if(!dynsymfile)
{
perror("Cannot open readeh_tmp_file.exe");
......
Subproject commit 90b4041d328482923a545730702619d30b72165a
Subproject commit 0e5c23d1c8126dccd2955a95f7c67ce000d4c2a9