]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_target/src/spec/thumbv8m_main_none_eabi.rs
Merge commit '4a053f206fd6799a25823c307f7d7f9d897be118' into sync-rustfmt-subtree
[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".to_string(),
9         pointer_width: 32,
10         data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
11         arch: "arm".to_string(),
12
13         options: TargetOptions {
14             abi: "eabi".to_string(),
15             max_atomic_width: Some(32),
16             ..super::thumb_base::opts()
17         },
18     }
19 }