Displaying 2 results from an estimated 2 matches for "flags_edx".
Did you mean:
flags_ecx
2017 Feb 14
2
Flac build issue in debug win x32
...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);
}
else {
FLAC__cpu...
2017 Feb 20
0
Flac build issue in debug win x32
...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);
> }
>...