We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b166cc commit 8026bafCopy full SHA for 8026baf
src/lib.rs
@@ -479,10 +479,6 @@ fn to_gcc_opt_level(optlevel: Option<OptLevel>) -> OptimizationLevel {
479
/// Returns the features that should be set in `cfg(target_feature)`.
480
fn target_config(sess: &Session, target_info: &LockedTargetInfo) -> TargetConfig {
481
let (unstable_target_features, target_features) = cfg_target_feature(sess, |feature| {
482
- // TODO: we disable Neon for now since we don't support the LLVM intrinsics for it.
483
- if feature == "neon" {
484
- return false;
485
- }
486
target_info.cpu_supports(feature)
487
// cSpell:disable
488
/*
0 commit comments