Update aarch64 target_feature list for LLVM 12.

This commit is contained in:
Adam Gemmell 2021-11-01 16:22:29 +00:00
parent 473eaa42e9
commit cdd98bbdfe
2 changed files with 18 additions and 8 deletions

View file

@ -180,6 +180,7 @@ pub fn to_llvm_feature<'a>(sess: &Session, s: &'a str) -> Vec<&'a str> {
("aarch64", "dpb2") => vec!["ccdp"],
("aarch64", "frintts") => vec!["fptoint"],
("aarch64", "fcma") => vec!["complxnum"],
("aarch64", "pmuv3") => vec!["perfmon"],
(_, s) => vec![s],
}
}