rust-lang / stdarch

Rust's standard library vendor-specific APIs and run-time feature detection
https://doc.rust-lang.org/stable/core/arch/
Apache License 2.0
605 stars 267 forks source link

Inlining checks are broken for arm #1210

Open hkratz opened 3 years ago

hkratz commented 3 years ago

Inlining is not checked in the automated tests for arm.

There are some arm neon intrinsics for which the compiled test shims contain subroutine calls to other intrinsics.

Also the deduplication guard code is to heavy for arm and is emitted as function calls for some tests causing false positives once the inlining checks are enabled.

PR will follow once #1208 has landed.

hkratz commented 3 years ago

When #1211 has landed and #1212 is fixed the inlining checks can be enabled for arm.

Nugine commented 2 years ago

Hi, is there any progress?