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 May 28, 2024
1 parent e4c6f75 commit 967bcf4
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 @@ -84,7 +84,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

return result;
Expand Down

0 comments on commit 967bcf4

Please sign in to comment.