Skip to content

Rollup of 7 pull requests - #161559

Closed
JonathanBrouwer wants to merge 29 commits into
rust-lang:mainfrom
JonathanBrouwer:rollup-SYHwGWK
Closed

Rollup of 7 pull requests#161559
JonathanBrouwer wants to merge 29 commits into
rust-lang:mainfrom
JonathanBrouwer:rollup-SYHwGWK

Conversation

@JonathanBrouwer

Copy link
Copy Markdown
Member

Successful merges:

r? @ghost

Create a similar rollup

kx0101 and others added 29 commits May 5, 2026 00:34
Honor build.docs-minification=false for rustdoc suites run via
compiletest by forwarding --disable-minification to rustdoc.
A braced const argument that is a call, like `Ty<{ Ty::f() }>`, is lowered
as a tuple constructor. When the callee's self type cannot host a
tuple-variant constructor (a struct, union, primitive, or foreign type),
the call is an associated function, not a constructor, and must be wrapped
in a `const { ... }` block.

Detect that from the self type's resolution before lowering it, and emit
the existing "complex const arguments must be placed inside of a `const`
block" diagnostic. A generic struct written without its arguments, as
`tracing`'s logging macros generate, would otherwise produce a spurious
E0107 "missing generics" cascade; a primitive or foreign type would
surface an opaque "invalid base path" error.

Enums, aliases, `Self`, and type parameters are left to constructor
lowering, since each may resolve to an enum.

Add UI tests for struct, union, primitive, and foreign self types, plus
the `const { ... }`-wrapped form that compiles.
This is motivated by rust-lang#160164,
which added the derive which wouldn't actually work, due to recusrive
trait bounds (more on this in a later commit). This change will make it
so that these errors are caught in rustc CI.
Becuase its implementations must uphold a soundness-critical invariant.
…157152, r=BoxyUwU

Reject non-constructor self types in const-arg tuple-call lowering

Turning on `min_generic_const_args` makes `tracing` stop compiling. Its logging macros expand a field name to something like `FieldName<{ FieldName::len(stringify!(field)) }>`, and under mgca a braced call in const-arg position gets lowered as a tuple constructor. So lowering tries to resolve the bare self type `FieldName` (written without its `const N`), which kicks off an `E0107 "missing generics"` cascade pointing deep into macro code. But `FieldName::len(..)` is just an associated fn, not a constructor, so lowering it like a `TupleCall` was wrong in the first place. See rust-lang#157152.

Only an enum can host a tuple-variant ctor, so for any other self type that can't (struct, union, primitive, foreign type) the call has to be an assoc fn and needs wrapping in `const { ... }`. We catch those from the self type's resolution before lowering it and emit the existing "complex const arguments must be placed inside of a `const` block" error, which is the message you'd want anyway. Enums, aliases, `Self` and type params get left alone since they might resolve to an enum. tbh the bare generic *enum* case (`Option::Some(0)`) still E0107s, and imo that's better as a follow-up since catching it needs the variant type before lowering. Tests cover struct/union/primitive/foreign plus the wrapped forms that compile, and I checked it against the real `tracing` 0.1.44 crate too.

_fwiw just the code changes and tests were implemented with AI help and I verified/reproduced/tested everything locally before sending to remote._
…rward-disable-minification, r=lolbinarycat

compiletest: forward disable-minification from bootstrap

`build.docs-minification = false` was already honored when building docs through bootstrap's doc steps, but compiletest-driven rustdoc suites always generated minified CSS/JS.

Bootstrap now forwards `--disable-minification` to compiletest when docs minification is disabled, and compiletest passes `-Zunstable-options --disable-minification` to rustdoc for HTML/JS/JSON/UI doc generation.

Fixes rust-lang#142737.
…folkertdev

Add floating point inline ASM support for SPARC

This PR adds support for floating point registers to SPARC inline ASM.

Ping target maintainers: @psumbera @kulikjak @jonathanpallant @mvolfik @he32 @0323pin @semarie

Tracking issues:
f16 inline ASM: rust-lang#125398 (part of rust-lang#116909)
SPARC inline ASM: rust-lang#93335
…, r=Mark-Simulacrum

feat: add symmetric PartialEq impls for Vec, &[T], &mut [T] versus Cow<'_, [T]>

add the missing reverse `PartialEq<Cow<'_, [U]>>` impls for `Vec<T, A>`, `&[T]`, and `&mut [T]`, essentially mirroring the existing forwards in `library/alloc/src/vec/partial_eq.rs`

partially addresses rust-lang#152830. The `VecDeque` half of that issue is being handled separately by rust-lang#152972, so there is no overlap with this PR

also fyi: verified locally with `./x test library/alloctests --stage 1` and the new `test_partial_eq_cow_symmetric` test passes alongside the existing alloc test suite
…kingjubilee

target_features: sse (or at least avx2) is incompatible with soft-float ABI

Fixes rust-lang#117938

Enabling both the avx2 and soft-float target features is [not supported by LLVM](rust-lang#117938 (comment)) and can crash the backend. Let's preempt that with rust-level checks. (I still think there's also an LLVM bug here, it shouldn't just SIGILL on unexpected target feature configurations, but that's a different discussion.)

What is not clear to me is whether this just affects just avx2 or also avx or even sse (we don't support mmx/3dnow separately).  @dianqk do you know more about this? To be safe, let's reject "sse" and therefore by implication also all other x86 vector target features.

This PR turns `#[target_feature(enable = "sse")]` on a softfloat target into an FCW similar to what we do on aarch64 (see rust-lang#135160). The FCW only affects people building for soft-float targets which is a fairly small percentage of our overall users (and which means we cannot meaningfully crater this). I hence went for "report in deps" immediately so that the people building the actual binaries see these warnings that their upstreams probably will never see.
… r=JonathanBrouwer

Derive `GenericTypeVisitable` for `RegionConstraint` _correctly_

The derive added in rust-lang#160164 was incorrect -- it resulted in an overflow during trait solving. This is because `#[derive(GenericTypeVisitable)]` automatically adds a `: GenericTypeVisitable` bound to every field of a type -- in this case, `Box<[RegionConstraint<I>]>: GenericTypeVisitable<V>`.

To fix this, I added a `#[generic_type_visitable(bounds(..))]` attribute to the derive macro, which allows overriding the added bounds.

I also made the derive macro no longer a no-op in rustc, so that errors like this can be caught on r-l/r CI in the future.

Best reviewed commit-by-commit.

cc @ChayimFriedman2
…cnr,adwinwhite

be more permissive wrt overflow and and improve diagnostics

This builds on rust-lang#160632

Previously we only showed a single root goal for the FCW. It was difficult to find out how the goal overflowed.
We display a proving chain now which should help users identify relevant types or auto traits.

This will affect perf for crates emitting the FCW. E.g. `calimero-store` goes from 4.7s -> 5.7s in local testing since it emits thousands of FCWs internally. The FCW is a mitigation of future hard error and authors are expected to resolve it so it's probably acceptable. It doesn't affect crates without the FCW.

r? lcnr
@rust-bors rust-bors Bot added the rollup A PR which is a rollup label Aug 22, 2026
@rustbot rustbot added A-compiletest Area: The compiletest test runner A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. A-testsuite Area: The testsuite used to check the correctness of rustc S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. WG-trait-system-refactor The Rustc Trait System Refactor Initiative (-Znext-solver) labels Aug 22, 2026
@JonathanBrouwer

Copy link
Copy Markdown
Member Author

@bors r+ p=5

Trying commonly failed jobs
@bors try jobs=dist-various-1,test-various,x86_64-gnu-aux,x86_64-gnu-llvm-21-3,x86_64-msvc-1,aarch64-apple-1,aarch64-apple-2,x86_64-mingw-1,i686-msvc-1,i686-msvc-2

@rust-bors

rust-bors Bot commented Aug 22, 2026

Copy link
Copy Markdown
Contributor

📌 Commit ac5567e has been approved by JonathanBrouwer

It is now in the queue for this repository.

@rust-bors rust-bors Bot added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Aug 22, 2026
@rust-bors

This comment has been minimized.

rust-bors Bot pushed a commit that referenced this pull request Aug 22, 2026
Rollup of 7 pull requests


try-job: dist-various-1
try-job: test-various
try-job: x86_64-gnu-aux
try-job: x86_64-gnu-llvm-21-3
try-job: x86_64-msvc-1
try-job: aarch64-apple-1
try-job: aarch64-apple-2
try-job: x86_64-mingw-1
try-job: i686-msvc-1
try-job: i686-msvc-2
@rust-bors

This comment has been minimized.

rust-bors Bot pushed a commit that referenced this pull request Aug 22, 2026
…uwer

Rollup of 7 pull requests

Successful merges:

 - #157513 (Reject non-constructor self types in const-arg tuple-call lowering)
 - #159887 (compiletest: forward disable-minification from bootstrap)
 - #160949 (Add floating point inline ASM support for SPARC)
 - #156160 (feat: add symmetric PartialEq impls for Vec, &[T], &mut [T] versus Cow<'_, [T]>)
 - #160302 (target_features: sse (or at least avx2) is incompatible with soft-float ABI)
 - #160914 (Derive `GenericTypeVisitable` for `RegionConstraint` _correctly_)
 - #161341 (be more permissive wrt overflow and and improve diagnostics)
@rust-log-analyzer

Copy link
Copy Markdown
Collaborator

The job test-various failed! Check out the build log: (web) (plain enhanced) (plain)

Click to see the possible cause of the failure (guessed by this bot)
   Compiling test v0.0.0 (/checkout/library/test)
error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:18:18
   |
18 | #[target_feature(enable = "sse")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>
   = note: `#[deny(x86_softfloat_sse)]` (part of `#[deny(future_incompatible)]`) on by default

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:31:18
   |
31 | #[target_feature(enable = "sse")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:44:18
   |
44 | #[target_feature(enable = "sse")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:57:18
   |
57 | #[target_feature(enable = "sse")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:70:18
   |
70 | #[target_feature(enable = "sse")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:83:18
   |
83 | #[target_feature(enable = "sse")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:96:18
   |
96 | #[target_feature(enable = "sse")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:109:18
    |
109 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:122:18
    |
122 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:134:18
    |
134 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:146:18
    |
146 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:158:18
    |
158 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:170:18
    |
170 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:182:18
    |
182 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:195:18
    |
195 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:207:18
    |
207 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:221:18
    |
221 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:233:18
    |
233 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:245:18
    |
245 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:268:18
    |
268 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:290:18
    |
290 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:311:18
    |
311 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:333:18
    |
333 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:347:18
    |
347 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:361:18
    |
361 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:375:18
    |
375 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:389:18
    |
389 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:403:18
    |
403 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:417:18
    |
417 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:431:18
    |
431 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:445:18
    |
445 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:459:18
    |
459 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:473:18
    |
473 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:487:18
    |
487 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:500:18
    |
500 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:513:18
    |
513 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:527:18
    |
527 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:540:18
    |
540 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:554:18
    |
554 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:567:18
    |
567 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:581:18
    |
581 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:595:18
    |
595 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:609:18
    |
609 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:623:18
    |
623 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:637:18
    |
637 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:651:18
    |
651 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:663:18
    |
663 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:675:18
    |
675 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:688:18
    |
688 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:701:18
    |
701 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:714:18
    |
714 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:726:18
    |
726 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:739:18
    |
739 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:753:18
    |
753 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:767:18
    |
767 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:781:18
    |
---

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:33:18
   |
33 | #[target_feature(enable = "fma")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:46:18
   |
46 | #[target_feature(enable = "fma")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:59:18
   |
59 | #[target_feature(enable = "fma")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:72:18
   |
72 | #[target_feature(enable = "fma")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:87:18
   |
87 | #[target_feature(enable = "fma")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:108:18
    |
108 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:128:18
    |
128 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:146:18
    |
146 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:164:18
    |
164 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:182:18
    |
182 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:199:18
    |
199 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:212:18
    |
212 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:225:18
    |
225 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:238:18
    |
238 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:253:18
    |
253 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:274:18
    |
274 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:294:18
    |
294 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:312:18
    |
312 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:330:18
    |
330 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:348:18
    |
348 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:365:18
    |
365 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:378:18
    |
378 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:391:18
    |
391 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:404:18
    |
404 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:419:18
    |
419 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:440:18
    |
440 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:460:18
    |
460 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:474:18
    |
474 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:488:18
    |
488 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:502:18
    |
502 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:518:18
    |
518 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:540:18
    |
540 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse4a.rs:37:18
   |
37 | #[target_feature(enable = "sse4a")]
   |                  ^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse4a.rs:56:18
   |
56 | #[target_feature(enable = "sse4a")]
   |                  ^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse4a.rs:80:18
   |
80 | #[target_feature(enable = "sse4a")]
   |                  ^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse4a.rs:96:18
   |
96 | #[target_feature(enable = "sse4a")]
   |                  ^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse4a.rs:121:18
    |
121 | #[target_feature(enable = "sse4a")]
    |                  ^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sse4a.rs:147:18
    |
147 | #[target_feature(enable = "sse4a")]
    |                  ^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/pclmulqdq.rs:27:18
   |
27 | #[target_feature(enable = "pclmulqdq")]
   |                  ^^^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/aes.rs:35:18
   |
35 | #[target_feature(enable = "aes")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/aes.rs:46:18
   |
46 | #[target_feature(enable = "aes")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/aes.rs:57:18
   |
57 | #[target_feature(enable = "aes")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/aes.rs:68:18
   |
68 | #[target_feature(enable = "aes")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/aes.rs:79:18
   |
79 | #[target_feature(enable = "aes")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/aes.rs:94:18
   |
94 | #[target_feature(enable = "aes")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:50:18
   |
50 | #[target_feature(enable = "sha")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:63:18
   |
63 | #[target_feature(enable = "sha")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:76:18
   |
76 | #[target_feature(enable = "sha")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:91:18
   |
91 | #[target_feature(enable = "sha")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:106:18
    |
106 | #[target_feature(enable = "sha")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:119:18
    |
119 | #[target_feature(enable = "sha")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:134:18
    |
134 | #[target_feature(enable = "sha")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:147:18
    |
147 | #[target_feature(enable = "sha512,avx")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:160:18
    |
160 | #[target_feature(enable = "sha512,avx")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:176:18
    |
176 | #[target_feature(enable = "sha512,avx")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:189:18
    |
189 | #[target_feature(enable = "sm3,avx")]
---

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:10:18
   |
10 | #[target_feature(enable = "avx512fp16")]
   |                  ^^^^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:30:18
   |
30 | #[target_feature(enable = "avx512fp16")]
   |                  ^^^^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:60:18
   |
60 | #[target_feature(enable = "avx512fp16")]
   |                  ^^^^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:108:18
    |
108 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:119:18
    |
119 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:130:18
    |
130 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:141:18
    |
141 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:152:18
    |
152 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:172:18
    |
172 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:202:18
    |
202 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:249:18
    |
249 | #[target_feature(enable = "avx512fp16,avx512vl")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:260:18
    |
260 | #[target_feature(enable = "avx512fp16,avx512vl")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:271:18
    |
271 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:285:18
    |
285 | #[target_feature(enable = "avx512fp16,avx512vl")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:299:18
    |
299 | #[target_feature(enable = "avx512fp16,avx512vl")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:313:18
    |
313 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:325:18
    |
325 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:337:18
    |
337 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:349:18
    |
349 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:361:18
    |
361 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:373:18
    |
373 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:385:18
    |
385 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:397:18
    |
397 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:409:18
    |
409 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:421:18
    |
421 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:433:18
    |
433 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:445:18
    |
445 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:457:18
    |
457 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:469:18
    |
469 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:481:18
    |
481 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:493:18
    |
493 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:505:18
    |
505 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:517:18
    |
517 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:529:18
    |
529 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:541:18
    |
541 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:553:18
    |
553 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:565:18
    |
565 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:578:18
    |
578 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:597:18
    |
597 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:619:18
    |
619 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:641:18
    |
641 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:660:18
    |
660 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:682:18
    |
682 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:703:18
    |
703 | #[target_feature(enable = "avx512fp16,avx512vl")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:716:18
    |
716 | #[target_feature(enable = "avx512fp16,avx512vl")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:731:18
    |
731 | #[target_feature(enable = "avx512fp16,avx512vl")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:744:18
    |
744 | #[target_feature(enable = "avx512fp16,avx512vl")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:763:18
    |
763 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:776:18
    |
776 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:794:18
    |
794 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:812:18
    |
812 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:833:18
    |
833 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:848:18
    |
848 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:868:18
    |
868 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:881:18
    |
881 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:895:18
    |
895 | #[target_feature(enable = "avx512fp16")]

@rust-bors rust-bors Bot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Aug 22, 2026
@rust-bors

rust-bors Bot commented Aug 22, 2026

Copy link
Copy Markdown
Contributor

💔 Test for 3cc27ca failed: CI. Failed job:

@rust-log-analyzer

Copy link
Copy Markdown
Collaborator

The job dist-various-2 failed! Check out the build log: (web) (plain enhanced) (plain)

Click to see the possible cause of the failure (guessed by this bot)
   Compiling compiler_builtins v0.1.160 (/checkout/library/compiler-builtins/compiler-builtins)
error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:18:18
   |
18 | #[target_feature(enable = "sse")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>
   = note: `#[deny(x86_softfloat_sse)]` (part of `#[deny(future_incompatible)]`) on by default

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:31:18
   |
31 | #[target_feature(enable = "sse")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:44:18
   |
44 | #[target_feature(enable = "sse")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:57:18
   |
57 | #[target_feature(enable = "sse")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:70:18
   |
70 | #[target_feature(enable = "sse")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:83:18
   |
83 | #[target_feature(enable = "sse")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:96:18
   |
96 | #[target_feature(enable = "sse")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:109:18
    |
109 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:122:18
    |
122 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:134:18
    |
134 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:146:18
    |
146 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:158:18
    |
158 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:170:18
    |
170 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:182:18
    |
182 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:195:18
    |
195 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:207:18
    |
207 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:221:18
    |
221 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:233:18
    |
233 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:245:18
    |
245 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:268:18
    |
268 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:290:18
    |
290 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:311:18
    |
311 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:333:18
    |
333 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:347:18
    |
347 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:361:18
    |
361 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:375:18
    |
375 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:389:18
    |
389 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:403:18
    |
403 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:417:18
    |
417 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:431:18
    |
431 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:445:18
    |
445 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:459:18
    |
459 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:473:18
    |
473 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:487:18
    |
487 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:500:18
    |
500 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:513:18
    |
513 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:527:18
    |
527 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:540:18
    |
540 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:554:18
    |
554 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:567:18
    |
567 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:581:18
    |
581 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:595:18
    |
595 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:609:18
    |
609 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:623:18
    |
623 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:637:18
    |
637 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:651:18
    |
651 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:663:18
    |
663 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:675:18
    |
675 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:688:18
    |
688 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:701:18
    |
701 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:714:18
    |
714 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:726:18
    |
726 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:739:18
    |
739 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:753:18
    |
753 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:767:18
    |
767 | #[target_feature(enable = "sse")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs:781:18
    |
---

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:33:18
   |
33 | #[target_feature(enable = "fma")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:46:18
   |
46 | #[target_feature(enable = "fma")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:59:18
   |
59 | #[target_feature(enable = "fma")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:72:18
   |
72 | #[target_feature(enable = "fma")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:87:18
   |
87 | #[target_feature(enable = "fma")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:108:18
    |
108 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:128:18
    |
128 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:146:18
    |
146 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:164:18
    |
164 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:182:18
    |
182 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:199:18
    |
199 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:212:18
    |
212 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:225:18
    |
225 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:238:18
    |
238 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:253:18
    |
253 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:274:18
    |
274 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:294:18
    |
294 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:312:18
    |
312 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:330:18
    |
330 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:348:18
    |
348 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:365:18
    |
365 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:378:18
    |
378 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:391:18
    |
391 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:404:18
    |
404 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:419:18
    |
419 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:440:18
    |
440 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:460:18
    |
460 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:474:18
    |
474 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:488:18
    |
488 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:502:18
    |
502 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:518:18
    |
518 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs:540:18
    |
540 | #[target_feature(enable = "fma")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse4a.rs:37:18
   |
37 | #[target_feature(enable = "sse4a")]
   |                  ^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse4a.rs:56:18
   |
56 | #[target_feature(enable = "sse4a")]
   |                  ^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse4a.rs:80:18
   |
80 | #[target_feature(enable = "sse4a")]
   |                  ^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse4a.rs:96:18
   |
96 | #[target_feature(enable = "sse4a")]
   |                  ^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse4a.rs:121:18
    |
121 | #[target_feature(enable = "sse4a")]
    |                  ^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sse4a.rs:147:18
    |
147 | #[target_feature(enable = "sse4a")]
    |                  ^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/pclmulqdq.rs:27:18
   |
27 | #[target_feature(enable = "pclmulqdq")]
   |                  ^^^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/aes.rs:35:18
   |
35 | #[target_feature(enable = "aes")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/aes.rs:46:18
   |
46 | #[target_feature(enable = "aes")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/aes.rs:57:18
   |
57 | #[target_feature(enable = "aes")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/aes.rs:68:18
   |
68 | #[target_feature(enable = "aes")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/aes.rs:79:18
   |
79 | #[target_feature(enable = "aes")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/aes.rs:94:18
   |
94 | #[target_feature(enable = "aes")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:50:18
   |
50 | #[target_feature(enable = "sha")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:63:18
   |
63 | #[target_feature(enable = "sha")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:76:18
   |
76 | #[target_feature(enable = "sha")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:91:18
   |
91 | #[target_feature(enable = "sha")]
   |                  ^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:106:18
    |
106 | #[target_feature(enable = "sha")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:119:18
    |
119 | #[target_feature(enable = "sha")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:134:18
    |
134 | #[target_feature(enable = "sha")]
    |                  ^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:147:18
    |
147 | #[target_feature(enable = "sha512,avx")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:160:18
    |
160 | #[target_feature(enable = "sha512,avx")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:176:18
    |
176 | #[target_feature(enable = "sha512,avx")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs:189:18
    |
189 | #[target_feature(enable = "sm3,avx")]
---

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:10:18
   |
10 | #[target_feature(enable = "avx512fp16")]
   |                  ^^^^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:30:18
   |
30 | #[target_feature(enable = "avx512fp16")]
   |                  ^^^^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:60:18
   |
60 | #[target_feature(enable = "avx512fp16")]
   |                  ^^^^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:108:18
    |
108 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:119:18
    |
119 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:130:18
    |
130 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:141:18
    |
141 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:152:18
    |
152 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:172:18
    |
172 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:202:18
    |
202 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:249:18
    |
249 | #[target_feature(enable = "avx512fp16,avx512vl")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:260:18
    |
260 | #[target_feature(enable = "avx512fp16,avx512vl")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:271:18
    |
271 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:285:18
    |
285 | #[target_feature(enable = "avx512fp16,avx512vl")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:299:18
    |
299 | #[target_feature(enable = "avx512fp16,avx512vl")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:313:18
    |
313 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:325:18
    |
325 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:337:18
    |
337 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:349:18
    |
349 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:361:18
    |
361 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:373:18
    |
373 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:385:18
    |
385 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:397:18
    |
397 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:409:18
    |
409 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:421:18
    |
421 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:433:18
    |
433 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:445:18
    |
445 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:457:18
    |
457 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:469:18
    |
469 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:481:18
    |
481 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:493:18
    |
493 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:505:18
    |
505 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:517:18
    |
517 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:529:18
    |
529 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:541:18
    |
541 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:553:18
    |
553 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:565:18
    |
565 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:578:18
    |
578 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:597:18
    |
597 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:619:18
    |
619 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:641:18
    |
641 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:660:18
    |
660 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:682:18
    |
682 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:703:18
    |
703 | #[target_feature(enable = "avx512fp16,avx512vl")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:716:18
    |
716 | #[target_feature(enable = "avx512fp16,avx512vl")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:731:18
    |
731 | #[target_feature(enable = "avx512fp16,avx512vl")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:744:18
    |
744 | #[target_feature(enable = "avx512fp16,avx512vl")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:763:18
    |
763 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:776:18
    |
776 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:794:18
    |
794 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:812:18
    |
812 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:833:18
    |
833 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:848:18
    |
848 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:868:18
    |
868 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:881:18
    |
881 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs:895:18
    |
895 | #[target_feature(enable = "avx512fp16")]
---

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:13:18
   |
13 | #[target_feature(enable = "avx512f")]
   |                  ^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:24:18
   |
24 | #[target_feature(enable = "avx512f")]
   |                  ^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:35:18
   |
35 | #[target_feature(enable = "avx512f")]
   |                  ^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:46:18
   |
46 | #[target_feature(enable = "avx512f")]
   |                  ^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:57:18
   |
57 | #[target_feature(enable = "avx512f")]
   |                  ^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:72:18
   |
72 | #[target_feature(enable = "avx512f")]
   |                  ^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:87:18
   |
87 | #[target_feature(enable = "avx512f")]
   |                  ^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:102:18
    |
102 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:117:18
    |
117 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:128:18
    |
128 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:139:18
    |
139 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:150:18
    |
150 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:167:18
    |
167 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:190:18
    |
190 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:213:18
    |
213 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:236:18
    |
236 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:259:18
    |
259 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:282:18
    |
282 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:305:18
    |
305 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:327:18
    |
327 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:349:18
    |
349 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:371:18
    |
371 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:393:18
    |
393 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:415:18
    |
415 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:432:18
    |
432 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:449:18
    |
449 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:466:18
    |
466 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:483:18
    |
483 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:500:18
    |
500 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs:517:18
    |
517 | #[target_feature(enable = "avx512f")]
    |                  ^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
 --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512bw.rs:7:18
  |
7 | #[target_feature(enable = "avx512bw")]
  |                  ^^^^^^^^^^^^^^^^^^^
  |
  = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
  = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512bw.rs:18:18
   |
18 | #[target_feature(enable = "avx512bw")]
   |                  ^^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512fp16.rs:11:18
   |
11 | #[target_feature(enable = "avx512fp16")]
   |                  ^^^^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512fp16.rs:32:18
   |
32 | #[target_feature(enable = "avx512fp16")]
   |                  ^^^^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512fp16.rs:49:18
   |
49 | #[target_feature(enable = "avx512fp16")]
   |                  ^^^^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512fp16.rs:70:18
   |
70 | #[target_feature(enable = "avx512fp16")]
   |                  ^^^^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
  --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512fp16.rs:86:18
   |
86 | #[target_feature(enable = "avx512fp16")]
   |                  ^^^^^^^^^^^^^^^^^^^^^
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512fp16.rs:106:18
    |
106 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512fp16.rs:122:18
    |
122 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512fp16.rs:142:18
    |
142 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512fp16.rs:158:18
    |
158 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512fp16.rs:172:18
    |
172 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512fp16.rs:188:18
    |
188 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512fp16.rs:202:18
    |
202 | #[target_feature(enable = "avx512fp16")]
    |                  ^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/amx.rs:639:18
    |
639 | #[target_feature(enable = "amx-avx512,avx10.2")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/amx.rs:654:18
    |
654 | #[target_feature(enable = "amx-avx512,avx10.2")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/amx.rs:670:18
    |
670 | #[target_feature(enable = "amx-avx512,avx10.2")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/amx.rs:682:18
    |
682 | #[target_feature(enable = "amx-avx512,avx10.2")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/amx.rs:698:18
    |
698 | #[target_feature(enable = "amx-avx512,avx10.2")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/amx.rs:715:18
    |
715 | #[target_feature(enable = "amx-avx512,avx10.2")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/amx.rs:727:18
    |
727 | #[target_feature(enable = "amx-avx512,avx10.2")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/amx.rs:743:18
    |
743 | #[target_feature(enable = "amx-avx512,avx10.2")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/amx.rs:760:18
    |
760 | #[target_feature(enable = "amx-avx512,avx10.2")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/amx.rs:772:18
    |
772 | #[target_feature(enable = "amx-avx512,avx10.2")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/amx.rs:788:18
    |
788 | #[target_feature(enable = "amx-avx512,avx10.2")]
    |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #117938 <https://github.com/rust-lang/rust/issues/117938>

error: enabling the `sse` target feature on the current target is unsupported due to LLVM backend issues
   --> /rustc/3cc27ca05d28b8fb0391c1279a701b476cf36f08/library/core/src/../../stdarch/crates/core_arch/src/x86_64/amx.rs:805:18
    |
805 | #[target_feature(enable = "amx-avx512,avx10.2")]

@rust-bors rust-bors Bot added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Aug 22, 2026
@rust-bors

rust-bors Bot commented Aug 22, 2026

Copy link
Copy Markdown
Contributor

💔 Test for 21fb77e failed: CI. Failed job:

@rust-bors

rust-bors Bot commented Aug 22, 2026

Copy link
Copy Markdown
Contributor

PR #160302, which is a member of this rollup, was unapproved.

@jhpratt jhpratt closed this Aug 22, 2026
@rustbot rustbot removed the S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. label Aug 22, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-compiletest Area: The compiletest test runner A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. A-testsuite Area: The testsuite used to check the correctness of rustc rollup A PR which is a rollup T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. WG-trait-system-refactor The Rustc Trait System Refactor Initiative (-Znext-solver)

Projects

None yet

Development

Successfully merging this pull request may close these issues.