don't try to mark rsp as clobbered in linux syscall support
rsp is not actually clobbered by that code and later gccs actually (correctly) bark at it. Fixed issue #1076.
This commit is contained in:
parent
1e36ed7055
commit
9e5b162873
|
@ -1485,7 +1485,7 @@ struct kernel_stat {
|
|||
"d"(LSS_SYSCALL_ARG(parent_tidptr)),
|
||||
"r"(LSS_SYSCALL_ARG(newtls)),
|
||||
"r"(LSS_SYSCALL_ARG(child_tidptr))
|
||||
: "rsp", "memory", "r8", "r10", "r11", "rcx");
|
||||
: "memory", "r8", "r10", "r11", "rcx");
|
||||
}
|
||||
LSS_RETURN(int, __res);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue