1
Fork 0

Replace every String in Target(Options) with Cow<'static, str>

This commit is contained in:
Loïc BRANSTETT 2022-03-22 11:43:05 +01:00
parent 15a242a432
commit ccff48f97b
223 changed files with 1252 additions and 1243 deletions

View file

@ -2,16 +2,16 @@ use crate::spec::{Target, TargetOptions};
pub fn target() -> Target {
Target {
llvm_target: "mipsisa32r6el-unknown-linux-gnu".to_string(),
llvm_target: "mipsisa32r6el-unknown-linux-gnu".into(),
pointer_width: 32,
data_layout: "e-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64".to_string(),
arch: "mips".to_string(),
data_layout: "e-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64".into(),
arch: "mips".into(),
options: TargetOptions {
cpu: "mips32r6".to_string(),
features: "+mips32r6".to_string(),
cpu: "mips32r6".into(),
features: "+mips32r6".into(),
max_atomic_width: Some(32),
mcount: "_mcount".to_string(),
mcount: "_mcount".into(),
..super::linux_gnu_base::opts()
},