-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LLVM module verifier breakage for loop in alt in iter #791
Comments
keeperofdakeys
pushed a commit
to keeperofdakeys/rust
that referenced
this issue
Dec 12, 2017
Disable https on Android SDK fetch Apparently it no longer works
marysaka
pushed a commit
to sunriseos/rust
that referenced
this issue
Oct 20, 2019
pdietl
pushed a commit
to pdietl/rust
that referenced
this issue
Apr 23, 2020
Emphasize that `#[inline]` in all shapes is a hint.
graydon
added a commit
to graydon/rust
that referenced
this issue
Oct 16, 2024
graydon
added a commit
to graydon/rust
that referenced
this issue
Oct 23, 2024
fmease
added a commit
to fmease/rust
that referenced
this issue
Oct 23, 2024
Add wasm32v1-none target (compiler-team/rust-lang#791) This is a preliminary implementation of the MCP discussed in [compiler-team#791](rust-lang/compiler-team#791). It's not especially "major" but you know, process! Anyway it adds a new wasm32v1-none target which just pins down a set of wasm features. I think this is close to the consensus that emerged when discussing it on Zulip so I figured I'd sketch to see how hard it is. Turns out not very.
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Oct 23, 2024
Rollup of 5 pull requests Successful merges: - rust-lang#131043 (Refactor change detection for rustdoc and download-rustc) - rust-lang#131181 (Compiletest: Custom differ) - rust-lang#131487 (Add wasm32v1-none target (compiler-team/rust-lang#791)) - rust-lang#132054 (do not remove `.cargo` directory) - rust-lang#132058 (CI: rfl: use rust-next temporary commit) r? `@ghost` `@rustbot` modify labels: rollup
rust-timer
added a commit
to rust-lang-ci/rust
that referenced
this issue
Oct 23, 2024
Rollup merge of rust-lang#131487 - graydon:wasm32v1-none, r=alexcrichton Add wasm32v1-none target (compiler-team/rust-lang#791) This is a preliminary implementation of the MCP discussed in [compiler-team#791](rust-lang/compiler-team#791). It's not especially "major" but you know, process! Anyway it adds a new wasm32v1-none target which just pins down a set of wasm features. I think this is close to the consensus that emerged when discussing it on Zulip so I figured I'd sketch to see how hard it is. Turns out not very.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This code produces:
The error goes away if the loop is moved out of the alt, or the iter is made into a fn. Changing the loop to a for-each doesn't make the error go away.
The text was updated successfully, but these errors were encountered: