Skip to content

Commit 501b34b

Browse files
authored
Update isa.c
Update spaces to tabs to fix alignment issues.
1 parent f375d2f commit 501b34b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/x86/isa.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -433,14 +433,14 @@ struct cpuinfo_x86_isa cpuinfo_x86_detect_isa(
433433

434434
/*
435435
* AVX 10.1 instructions: avx 10 isa supported.
436-
* - Intel: edx[bit 19] in structured feature info (ecx = 1).
436+
* - Intel: edx[bit 19] in structured feature info (ecx = 1).
437437
*/
438438
isa.avx10_1 = avx512_regs && !!(structured_feature_info1.edx & UINT32_C(0x00080000));
439439

440440
/*
441441
* AVX 10.2 instructions: avx 10 version information.
442-
* - Intel: ebx[bits 0-7] in structured features info (eax = 24 ecx = 0).
443-
*/
442+
* - Intel: ebx[bits 0-7] in structured features info (eax = 24 ecx = 0).
443+
*/
444444
isa.avx10_2 = ((structured_feature_info2.ebx & UINT32_C(0x000000FF)) >= 2) && isa.avx10_1;
445445

446446
/*

0 commit comments

Comments
 (0)