Skip to content

Commit 27e12b8

Browse files
committed
Fix tier level for 5 thumb bare-metal ARM targets
1 parent d493b7c commit 27e12b8

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

compiler/rustc_target/src/spec/targets/thumbv7a_none_eabi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub(crate) fn target() -> Target {
77
llvm_target: "thumbv7a-none-eabi".into(),
88
metadata: TargetMetadata {
99
description: Some("Thumb-mode Bare Armv7-A".into()),
10-
tier: Some(2),
10+
tier: Some(3),
1111
host_tools: Some(false),
1212
std: Some(false),
1313
},

compiler/rustc_target/src/spec/targets/thumbv7a_none_eabihf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub(crate) fn target() -> Target {
77
llvm_target: "thumbv7a-none-eabihf".into(),
88
metadata: TargetMetadata {
99
description: Some("Thumb-mode Bare Armv7-A, hardfloat".into()),
10-
tier: Some(2),
10+
tier: Some(3),
1111
host_tools: Some(false),
1212
std: Some(false),
1313
},

compiler/rustc_target/src/spec/targets/thumbv7r_none_eabi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub(crate) fn target() -> Target {
77
llvm_target: "thumbv7r-none-eabi".into(),
88
metadata: TargetMetadata {
99
description: Some("Thumb-mode Bare Armv7-R".into()),
10-
tier: Some(2),
10+
tier: Some(3),
1111
host_tools: Some(false),
1212
std: Some(false),
1313
},

compiler/rustc_target/src/spec/targets/thumbv7r_none_eabihf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub(crate) fn target() -> Target {
77
llvm_target: "thumbv7r-none-eabihf".into(),
88
metadata: TargetMetadata {
99
description: Some("Thumb-mode Bare Armv7-R, hardfloat".into()),
10-
tier: Some(2),
10+
tier: Some(3),
1111
host_tools: Some(false),
1212
std: Some(false),
1313
},

compiler/rustc_target/src/spec/targets/thumbv8r_none_eabihf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub(crate) fn target() -> Target {
77
llvm_target: "thumbv8r-none-eabihf".into(),
88
metadata: TargetMetadata {
99
description: Some("Thumb-mode Bare Armv8-R, hardfloat".into()),
10-
tier: Some(2),
10+
tier: Some(3),
1111
host_tools: Some(false),
1212
std: Some(false),
1313
},

0 commit comments

Comments
 (0)