]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_target/src/spec/thumbv8m_main_none_eabi.rs
Auto merge of #97800 - pnkfelix:issue-97463-fix-aarch64-call-abi-does-not-zeroext...
[rust.git] / compiler / rustc_target / src / spec / thumbv8m_main_none_eabi.rs
1 // Targets the Cortex-M33 processor (Armv8-M Mainline architecture profile),
2 // without the Floating Point extension.
3
4 use crate::spec::{Target, TargetOptions};
5
6 pub fn target() -> Target {
7     Target {
8         llvm_target: "thumbv8m.main-none-eabi".into(),
9         pointer_width: 32,
10         data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".into(),
11         arch: "arm".into(),
12
13         options: TargetOptions {
14             abi: "eabi".into(),
15             max_atomic_width: Some(32),
16             ..super::thumb_base::opts()
17         },
18     }
19 }