Skip to content

Commit 296049f

Browse files
authored
64bit libc table generator had $r10 as 4th argument (#113)
## Description/Motivation/Screenshots Fixes `scripts/libc_function_args/tables/generator.py` which was wrong using `$r10` as 4th argument
1 parent 5d96909 commit 296049f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/libc_function_args/tables/generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def generate_all_json_files() -> bool:
118118
# generate x86_64
119119
if libc_x64_funcdef_fpath in libc_funcdef_list and not generate_json_file(
120120
function_dict,
121-
["$rdi", "$rsi", "$rdx", "$r10", "$r8", "$r9"],
121+
["$rdi", "$rsi", "$rdx", "$rcx", "$r8", "$r9"],
122122
libc_x64_funcdef_fpath,
123123
):
124124
logging.error(

0 commit comments

Comments
 (0)