From 4f1258fd913a65338c8fbf5cf38163b4e026964a Mon Sep 17 00:00:00 2001 From: Phoebe Wang Date: Thu, 7 Mar 2024 09:52:40 +0800 Subject: [X86] Change tuning of Sierraforest and Grandridge to more latest target (#84179) --- llvm/lib/Target/X86/X86.td | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/llvm/lib/Target/X86/X86.td b/llvm/lib/Target/X86/X86.td index e89ddcc..a2a65ce 100644 --- a/llvm/lib/Target/X86/X86.td +++ b/llvm/lib/Target/X86/X86.td @@ -1701,10 +1701,6 @@ foreach P = ["goldmont_plus", "goldmont-plus"] in { } def : ProcModel<"tremont", SLMModel, ProcessorFeatures.TRMFeatures, ProcessorFeatures.TRMTuning>; -foreach P = ["sierraforest", "grandridge"] in { - def : ProcModel; -} // "Arrandale" along with corei3 and corei5 foreach P = ["nehalem", "corei7", "core_i7_sse4_2"] in { @@ -1779,6 +1775,10 @@ def : ProcModel<"alderlake", AlderlakePModel, // FIXME: Use Gracemont Schedule Model when it is ready. def : ProcModel<"gracemont", AlderlakePModel, ProcessorFeatures.ADLFeatures, ProcessorFeatures.GRTTuning>; +foreach P = ["sierraforest", "grandridge"] in { + def : ProcModel; +} def : ProcModel<"raptorlake", AlderlakePModel, ProcessorFeatures.ADLFeatures, ProcessorFeatures.ADLTuning>; def : ProcModel<"meteorlake", AlderlakePModel, -- cgit v1.1