mirror of
git://git.musl-libc.org/musl
synced 2024-11-27 03:53:58 +08:00
riscv mcontext_t/sigcontext: use __aligned__ instead of aligned
aligned may be defined by the application for its own use before bits/signal.h is included.
This commit is contained in:
parent
cbf1c7b605
commit
a23cf8f9c5
@ -19,7 +19,7 @@ struct __riscv_mc_d_ext_state {
|
||||
};
|
||||
|
||||
struct __riscv_mc_q_ext_state {
|
||||
unsigned long long __f[64] __attribute__((aligned(16)));
|
||||
unsigned long long __f[64] __attribute__((__aligned__(16)));
|
||||
unsigned int __fcsr;
|
||||
unsigned int __reserved[3];
|
||||
};
|
||||
|
@ -19,7 +19,7 @@ struct __riscv_mc_d_ext_state {
|
||||
};
|
||||
|
||||
struct __riscv_mc_q_ext_state {
|
||||
unsigned long long __f[64] __attribute__((aligned(16)));
|
||||
unsigned long long __f[64] __attribute__((__aligned__(16)));
|
||||
unsigned int __fcsr;
|
||||
unsigned int __reserved[3];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user