From b7047bb89fca909779d06ef8f3e74ff1ef39e8a8 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Fri, 6 Jul 2018 17:12:03 -0500 Subject: [PATCH] ARM: expose the "mclass" target feature --- src/librustc_codegen_llvm/llvm_util.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/librustc_codegen_llvm/llvm_util.rs b/src/librustc_codegen_llvm/llvm_util.rs index 357b639e788..87ee9ef5adb 100644 --- a/src/librustc_codegen_llvm/llvm_util.rs +++ b/src/librustc_codegen_llvm/llvm_util.rs @@ -84,6 +84,7 @@ unsafe fn configure_llvm(sess: &Session) { // array, leading to crashes. const ARM_WHITELIST: &[(&str, Option<&str>)] = &[ + ("mclass", Some("arm_target_feature")), ("neon", Some("arm_target_feature")), ("v7", Some("arm_target_feature")), ("vfp2", Some("arm_target_feature")),