tools: Update asm-differ

This commit is contained in:
Léo Lam 2020-09-22 23:35:26 +02:00
parent 22a0c93c51
commit 90ae681ae0
No known key found for this signature in database
GPG Key ID: 0DF30F9081000741
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit 9d79eb9f539e5fa58fe63c62862661c5d9ce0d27
Subproject commit 220bfd266cacdc816f6a516a5bb22bb2377c0c83

View File

@ -33,7 +33,7 @@ if info is not None:
print(f"diffing: {Style.BRIGHT}{Fore.BLUE}{cxxfilt.demangle(info.decomp_name)}{Style.RESET_ALL} {Style.DIM}({info.decomp_name}){Style.RESET_ALL}")
addr_end = info.addr + info.size
subprocess.call(["tools/asm-differ/diff.py", "-e", info.decomp_name, "0x%016x" %
subprocess.call(["tools/asm-differ/diff.py", "-I", "-e", info.decomp_name, "0x%016x" %
info.addr, "0x%016x" % addr_end] + unknown)
if info.status == utils.FunctionStatus.NonMatching: