CPUID returns values in bits 0-15 of ebx those were mistakenly masked by 0xFF reading only bits 0-7. Thus on 256-processor architecture we got value 0 that is wrong. Masking by 0xFFFF fixes the problem.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM