Displaying 2 results from an estimated 2 matches for "flags_ebx".
2017 Feb 14
2
Flac build issue in debug win x32
...ode in CPU.c (line 155) won't link if you don't have NASM 
code built even if FLAC__HAS_X86INTRIN is true as 
FLAC__cpu_info_asm_ia32 don't exists and the else is compiled if there 
is no dead code stripping
if (FLAC__HAS_X86INTRIN) {
         FLAC__cpu_info_x86(0, &flags_eax, &flags_ebx, &flags_ecx, 
&flags_edx);
         info->ia32.intel = (flags_ebx == 0x756E6547 && flags_edx == 
0x49656E69 && flags_ecx == 0x6C65746E) ? true : false; /* GenuineIntel */
         FLAC__cpu_info_x86(1, &flags_eax, &flags_ebx, &flags_ecx, 
&flags_edx);...
2017 Feb 20
0
Flac build issue in debug win x32
...#39;t link if you don't have 
> NASM code built even if FLAC__HAS_X86INTRIN is true as 
> FLAC__cpu_info_asm_ia32 don't exists and the else is compiled if there 
> is no dead code stripping
>
> if (FLAC__HAS_X86INTRIN) {
>         FLAC__cpu_info_x86(0, &flags_eax, &flags_ebx, &flags_ecx, 
> &flags_edx);
>         info->ia32.intel = (flags_ebx == 0x756E6547 && flags_edx == 
> 0x49656E69 && flags_ecx == 0x6C65746E) ? true : false; /* GenuineIntel */
>         FLAC__cpu_info_x86(1, &flags_eax, &flags_ebx, &flags_ecx, 
>...