1
Fork 0

Add the movrs target feature and movrs_target_feature feature gate

This commit is contained in:
sayantn 2025-03-04 20:08:28 +05:30
parent 0ec1d460bb
commit 7c2434c52c
7 changed files with 24 additions and 0 deletions

View file

@ -304,6 +304,7 @@ pub(crate) fn to_llvm_features<'a>(sess: &Session, s: &'a str) -> Option<LLVMFea
{
None
}
("x86", "movrs") if get_version().0 < 20 => None,
(_, s) => Some(LLVMFeature::new(s)),
}
}