diff options
author | Andreas Jaeger <aj@suse.de> | 2002-03-21 16:11:18 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2002-03-21 16:11:18 +0000 |
commit | 3181d9d11f2a1d9eb94518a6d0ba9fd89ebcab7d (patch) | |
tree | ac75db8623e6209d4ebe8c91718477ecdb248f85 /sysdeps | |
parent | 57d180fd2696d1a6411e2fb0c324a8c96942639e (diff) | |
download | glibc-3181d9d11f2a1d9eb94518a6d0ba9fd89ebcab7d.tar.gz glibc-3181d9d11f2a1d9eb94518a6d0ba9fd89ebcab7d.tar.xz glibc-3181d9d11f2a1d9eb94518a6d0ba9fd89ebcab7d.zip |
Fix comment.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h b/sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h index 3ebb271973..57481154c9 100644 --- a/sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h +++ b/sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h @@ -100,7 +100,7 @@ struct sigcontext struct _fpstate { - /* Regular FPU environment. */ + /* FPU environment matching the 64-bit FXSAVE layout. */ __uint16_t cwd; __uint16_t swd; __uint16_t twd; @@ -109,7 +109,7 @@ struct _fpstate __uint64_t rdp; __uint32_t mxcsr; __uint32_t mxcr_mask; - __uint32_t st_space[32]; /* 8*16 bytes for each FP-reg = 128 bytes */ + __uint32_t st_space[32]; /* 8*16 bytes for each FP-reg = 128 bytes */ __uint32_t xmm_space[64]; /* 16*16 bytes for each XMM-reg = 128 bytes */ __uint32_t padding[24]; }; |