diff options
Diffstat (limited to 'pixman/pixman-x86.c')
-rw-r--r-- | pixman/pixman-x86.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pixman/pixman-x86.c b/pixman/pixman-x86.c index 57e4d1f..3a61fb4 100644 --- a/pixman/pixman-x86.c +++ b/pixman/pixman-x86.c @@ -33,14 +33,15 @@ * it. */ -typedef enum -{ +typedef int cpu_features_t; + +enum { X86_MMX = (1 << 0), X86_MMX_EXTENSIONS = (1 << 1), X86_SSE = (1 << 2) | X86_MMX_EXTENSIONS, X86_SSE2 = (1 << 3), X86_CMOV = (1 << 4) -} cpu_features_t; +}; #ifdef HAVE_GETISAX |