1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

Use __extension__ with long long in installed headers.

This commit is contained in:
Joseph Myers
2013-01-10 20:19:45 +00:00
parent 034ed64b2c
commit 828beb132d
20 changed files with 84 additions and 31 deletions

View File

@@ -217,7 +217,7 @@ typedef struct fpu
typedef struct fpu
{
union { /* FPU floating point regs */
unsigned long long fpu_regs[32]; /* 32 singles */
__extension__ unsigned long long fpu_regs[32]; /* 32 singles */
double fpu_dregs[16]; /* 16 doubles */
} fpu_fr;
struct fq *fpu_q; /* ptr to array of FQ entries */