aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Cowgill <james.cowgill@mips.com>2018-03-02 08:36:45 -0800
committerBen Hutchings <ben@decadent.org.uk>2019-01-02 03:08:04 +0000
commit8b15382a33823d38599347e90022abfcdc70fc68 (patch)
treee7098515d8e0194db98873019677167a88fa866f
parentedf92a18d1f1725896c928cbcf580abc268f307c (diff)
downloadklibc-8b15382a33823d38599347e90022abfcdc70fc68.tar.gz
[klibc] mips64: remove __unused from __jmp_buf
This field is not needed. Probably it was copied straight from the 32-bit mips __jmp_buf. Signed-off-by: James Cowgill <james.cowgill@mips.com> Link: https://www.zytor.com/pipermail/klibc/2018-March/003984.html Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
-rw-r--r--usr/include/arch/mips64/klibc/archsetjmp.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/usr/include/arch/mips64/klibc/archsetjmp.h b/usr/include/arch/mips64/klibc/archsetjmp.h
index c4587dc3dd0c3..bfca7776995e5 100644
--- a/usr/include/arch/mips64/klibc/archsetjmp.h
+++ b/usr/include/arch/mips64/klibc/archsetjmp.h
@@ -18,7 +18,6 @@ struct __jmp_buf {
unsigned long __sp;
unsigned long __s8;
unsigned long __ra;
- unsigned long __unused;
} __attribute__ ((aligned(8)));
typedef struct __jmp_buf jmp_buf[1];