Skip to content

Commit 8026baf

Browse files
committed
Do not disable neon feature
1 parent 9b166cc commit 8026baf

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/lib.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -479,10 +479,6 @@ fn to_gcc_opt_level(optlevel: Option<OptLevel>) -> OptimizationLevel {
479479
/// Returns the features that should be set in `cfg(target_feature)`.
480480
fn target_config(sess: &Session, target_info: &LockedTargetInfo) -> TargetConfig {
481481
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-
}
486482
target_info.cpu_supports(feature)
487483
// cSpell:disable
488484
/*

0 commit comments

Comments
 (0)