Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/compel
diff options
context:
space:
mode:
authorAdrian Reber <areber@redhat.com>2021-07-01 17:13:39 +0300
committerAndrei Vagin <avagin@gmail.com>2021-09-03 20:31:00 +0300
commit75feb9635ec54fb4e8d0ef86a85f80fe2368ca26 (patch)
tree70b5358f30b0f41317f7a66034d82ba5ede3b674 /compel
parentf3cb156604b02516a4a7157176353123c223f3c6 (diff)
ci: fix mips64el-cross test
The mips64el-cross test target started to show following error: error: listing the stack pointer register '$29' in a clobber list is deprecated [-Werror=deprecated] This fixes it in three different places by removing $29' from the clobber list. This is only compile tested as we have no mips hardware for testing. Signed-off-by: Adrian Reber <areber@redhat.com>
Diffstat (limited to 'compel')
-rw-r--r--compel/arch/mips/src/lib/include/uapi/asm/sigframe.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compel/arch/mips/src/lib/include/uapi/asm/sigframe.h b/compel/arch/mips/src/lib/include/uapi/asm/sigframe.h
index 7030332ad..c08fe06a3 100644
--- a/compel/arch/mips/src/lib/include/uapi/asm/sigframe.h
+++ b/compel/arch/mips/src/lib/include/uapi/asm/sigframe.h
@@ -51,7 +51,7 @@ struct rt_sigframe {
"syscall \n" \
: \
: "r"(new_sp) \
- : "$29","$2","memory")
+ : "$2","memory")
int sigreturn_prep_fpu_frame(struct rt_sigframe *sigframe,
struct rt_sigframe *rsigframe);