From b4eabbe5ceef3ec4542f3654d7a8ee601200dc5a Mon Sep 17 00:00:00 2001 From: "J. Gareth \"Curious Kit\" Moreton" Date: Tue, 6 Feb 2024 17:29:29 +0000 Subject: [PATCH] * x86: Fixed CPU feature flags for AMD Jaguar and Piledriver --- compiler/x86_64/cpuinfo.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/x86_64/cpuinfo.pas b/compiler/x86_64/cpuinfo.pas index 5a1998516e..cc26acc7b0 100644 --- a/compiler/x86_64/cpuinfo.pas +++ b/compiler/x86_64/cpuinfo.pas @@ -275,8 +275,8 @@ type { cpu_x86_64_v2 } cpu_x86_64_v2_flags, { cpu_bobcat } cpu_x86_64_v1_flags+[CPUX86_HAS_POPCNT,CPUX86_HAS_LZCNT], { cpu_core_avx } cpu_x86_64_v1_flags+[CPUX86_HAS_POPCNT], - { cpu_jaguar } cpu_x86_64_v2_flags, - { cpu_piledriver} cpu_x86_64_v1_flags+[CPUX86_HAS_POPCNT,CPUX86_HAS_BMI1,CPUX86_HAS_LZCNT,CPUX86_HAS_MOVBE], + { cpu_jaguar } cpu_x86_64_v2_flags+[CPUX86_HAS_BMI1,CPUX86_HAS_LZCNT,CPUX86_HAS_MOVBE], + { cpu_piledriver} cpu_x86_64_v2_flags+[CPUX86_HAS_BMI1,CPUX86_HAS_LZCNT,CPUX86_HAS_MOVBE], { cpu_excavator } cpu_x86_64_v3_flags, { cpu_core_avx2 } cpu_x86_64_v3_flags, { cpu_x86_64_v3 } cpu_x86_64_v3_flags,