summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2019-10-19 15:39:45 -0400
committerRich Felker <dalias@aerifal.cx>2019-10-19 15:39:45 -0400
commitc9f48cde0a22641ce3daf54596a9ecebdab91435 (patch)
tree4bf5aebdedee3555badd6aae51bb798dd8a65eb6 /arch
parentf6ecd0c296181bf6a2a7f54e3406c846500e8e63 (diff)
downloadmusl-c9f48cde0a22641ce3daf54596a9ecebdab91435.tar.gz
fix fpregset_t type on powerpc64
the userspace ucontext API has this as an array rather than a structure. commit 3c59a868956636bc8adafb1b168d090897692532 fixed the corresponding mistake for vrregset_t, namely that the original powerpc64 port used a mix of types from 32-bit powerpc and powerpc64 rather than matching the 64-bit types.
Diffstat (limited to 'arch')
-rw-r--r--arch/powerpc64/bits/signal.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/powerpc64/bits/signal.h b/arch/powerpc64/bits/signal.h
index 2cc0604c..4dec22a5 100644
--- a/arch/powerpc64/bits/signal.h
+++ b/arch/powerpc64/bits/signal.h
@@ -9,11 +9,7 @@
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
typedef unsigned long greg_t, gregset_t[48];
-
-typedef struct {
- double fpregs[32];
- double fpscr;
-} fpregset_t;
+typedef double fpregset_t[33];
typedef struct {
#ifdef __GNUC__