Skip to content

Commit

Permalink
libia2: Fix clobber list in ia2_thread_begin
Browse files Browse the repository at this point in the history
  • Loading branch information
ayrtonm committed Oct 31, 2024
1 parent 96ea375 commit f46bc6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/libia2/threads.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ void *ia2_thread_begin(void *arg) {
"mov sp, x10\n"
: [result] "=r"(result)
: [fn] "r"(fn), [data] "r"(&data), [new_sp_addr] "r"(new_sp_addr)
: "x10");
: "x0", "x10");
#endif
/* clang-format on */

Expand Down

0 comments on commit f46bc6c

Please sign in to comment.