about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEvelyn Harthbrooke <evelynharthbrooke@gmail.com>2024-08-09 16:59:36 -0600
committerGitHub <noreply@github.com>2024-08-09 16:59:36 -0600
commit1c02e2b5f17fa9f093bc9c46b54c993d52040e40 (patch)
treef81c6a27108efac1553afb2723a2e2dbde88f305
parent04d9b08c85646acbd50f0081c5d7150a3b2cb2b0 (diff)
downloadrust-1c02e2b5f17fa9f093bc9c46b54c993d52040e40.tar.gz
rust-1c02e2b5f17fa9f093bc9c46b54c993d52040e40.zip
fix incorrect value
-rw-r--r--compiler/rustc_target/src/spec/targets/aarch64_apple_darwin.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_target/src/spec/targets/aarch64_apple_darwin.rs b/compiler/rustc_target/src/spec/targets/aarch64_apple_darwin.rs
index f37781c3f63..65f2a1e3069 100644
--- a/compiler/rustc_target/src/spec/targets/aarch64_apple_darwin.rs
+++ b/compiler/rustc_target/src/spec/targets/aarch64_apple_darwin.rs
@@ -17,7 +17,7 @@ pub fn target() -> Target {
         llvm_target: macos_llvm_target(arch).into(),
         metadata: crate::spec::TargetMetadata {
             description: Some("ARM64 macOS (11.0+, Big Sur+)".into()),
-            tier: Some(2),
+            tier: Some(1),
             host_tools: Some(true),
             std: Some(true),
         },