]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_target/src/spec/thumbv7m_none_eabi.rs
Merge commit '98e2b9f25b6db4b2680a3d388456d9f95cb28344' into clippyup
[rust.git] / compiler / rustc_target / src / spec / thumbv7m_none_eabi.rs
1 // Targets the Cortex-M3 processor (ARMv7-M)
2
3 use crate::spec::{Target, TargetOptions};
4
5 pub fn target() -> Target {
6     Target {
7         llvm_target: "thumbv7m-none-eabi".to_string(),
8         pointer_width: 32,
9         data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
10         arch: "arm".to_string(),
11
12         options: TargetOptions { max_atomic_width: Some(32), ..super::thumb_base::opts() },
13     }
14 }