Skip to content

Commit

Permalink
Bug 1721515 - qcms: Remove some now unneeded unstable features. r=aos…
Browse files Browse the repository at this point in the history
…mond

These were used by our local NEON intrinsics implementation.
We don't need them anymore.

Differential Revision: https://phabricator.services.mozilla.com/D120420
  • Loading branch information
jrmuizel committed Jul 21, 2021
1 parent 5332e82 commit 132a096
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions gfx/qcms/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
// These are needed for the neon SIMD code and can be removed once the MSRV supports the
// instrinsics we use
#![cfg_attr(feature = "neon", feature(stdsimd))]
// These are needed for the neon intrinsics implementation
// and can be removed once the MSRV is high enough (1.48)
#![cfg_attr(feature = "neon", feature(platform_intrinsics, simd_ffi, link_llvm_intrinsics))]
#![cfg_attr(feature = "neon", feature(aarch64_target_feature, arm_target_feature, raw_ref_op))]

/// These values match the Rendering Intent values from the ICC spec
Expand Down

0 comments on commit 132a096

Please sign in to comment.