diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-01-13 20:31:17 +0100 |
---|---|---|
committer | Colin Guthrie <cguthrie@mandriva.org> | 2010-02-09 22:32:39 +0000 |
commit | 54025c96a7133964aa1568fe6d2e6c5ad05651bf (patch) | |
tree | a5f6552814d0394b25993b3eec9f34abf296cb90 /src/pulsecore/cpu-x86.h | |
parent | c88e4680f050a6ac65335b1d8148287cc4566b00 (diff) |
cpu: check for CMOV flag before using this intsruction in assembly
http://pulseaudio.org/ticket/776
Diffstat (limited to 'src/pulsecore/cpu-x86.h')
-rw-r--r-- | src/pulsecore/cpu-x86.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pulsecore/cpu-x86.h b/src/pulsecore/cpu-x86.h index f6484c592..285c20318 100644 --- a/src/pulsecore/cpu-x86.h +++ b/src/pulsecore/cpu-x86.h @@ -35,12 +35,12 @@ typedef enum pa_cpu_x86_flag { PA_CPU_X86_SSE4_1 = (1 << 6), PA_CPU_X86_SSE4_2 = (1 << 7), PA_CPU_X86_3DNOW = (1 << 8), - PA_CPU_X86_3DNOWEXT = (1 << 9) + PA_CPU_X86_3DNOWEXT = (1 << 9), + PA_CPU_X86_CMOV = (1 << 10) } pa_cpu_x86_flag_t; void pa_cpu_init_x86 (void); - #if defined (__i386__) typedef int32_t pa_reg_x86; #define PA_REG_a "eax" |