From 0cd508b09ffe194dbe6b08ea9f17cfa58f8d9e8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl=20=C3=85stholm?= Date: Tue, 9 Jan 2024 17:49:01 +0100 Subject: [PATCH] Re-run update_cpu_features (LLVM 17) release/17.x branch, commit 8f4dd44097c9ae25dd203d5ac87f3b48f854bba8 (same as the previous run) --- lib/std/Target/arm.zig | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/lib/std/Target/arm.zig b/lib/std/Target/arm.zig index 5245b3357e..4cc5d5559a 100644 --- a/lib/std/Target/arm.zig +++ b/lib/std/Target/arm.zig @@ -2204,9 +2204,7 @@ pub const cpu = struct { .name = "cortex_m33", .llvm_name = "cortex-m33", .features = featureSet(&[_]Feature{ - .dsp, .fix_cmse_cve_2021_35465, - .fp_armv8d16sp, .loop_align, .no_branch_predictor, .slowfpvfmx, @@ -2219,9 +2217,7 @@ pub const cpu = struct { .name = "cortex_m35p", .llvm_name = "cortex-m35p", .features = featureSet(&[_]Feature{ - .dsp, .fix_cmse_cve_2021_35465, - .fp_armv8d16sp, .loop_align, .no_branch_predictor, .slowfpvfmx, @@ -2240,17 +2236,15 @@ pub const cpu = struct { .slowfpvmlx, .use_misched, .v7em, - .vfp4d16sp, }), }; pub const cortex_m55 = CpuModel{ .name = "cortex_m55", .llvm_name = "cortex-m55", .features = featureSet(&[_]Feature{ + .dsp, .fix_cmse_cve_2021_35465, - .fp_armv8d16, .loop_align, - .mve_fp, .no_branch_predictor, .slowfpvmlx, .use_misched, @@ -2261,7 +2255,6 @@ pub const cpu = struct { .name = "cortex_m7", .llvm_name = "cortex-m7", .features = featureSet(&[_]Feature{ - .fp_armv8d16, .use_mipipeliner, .use_misched, .v7em, @@ -2271,9 +2264,8 @@ pub const cpu = struct { .name = "cortex_m85", .llvm_name = "cortex-m85", .features = featureSet(&[_]Feature{ - .fp_armv8d16, - .mve_fp, - .pacbti, + .dsp, + .trustzone, .use_misched, .v8_1m_main, }),