-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
future miscompiling to ud2 #60709
Comments
This does not reproduce for me on current nightly ( |
@cramertj In that case, add it as a regression test? |
@tmandry possibly the inhabitedness fix? |
@cramertj I was thinking that, but |
@tmandry yeah- the stack slot that it returns to is never going to be hit, though, since it's always pending. Not sure if that matters... |
Marking as deferred, not blocking stabilization. |
Issue rust-lang#60709 test Adds a test for rust-lang#60709, which was fixed as part of rust-lang#59897. r? @cramertj
Rollup of 5 pull requests Successful merges: - #61704 (Pass LLVM linker flags to librustc_llvm build) - #61792 (Add ui test for issue 51301) - #61803 (typeck: small refactoring, add 'fn write_resolution') - #61805 (typeck: Fix ICE for blocks in repeat expr count.) - #61818 (Issue #60709 test) Failed merges: r? @ghost
Issue rust-lang#60709 test Adds a test for rust-lang#60709, which was fixed as part of rust-lang#59897. r? @cramertj
Rollup of 7 pull requests Successful merges: - #61199 (Revert "Set test flag when rustdoc is running with --test option" ) - #61755 (Add `--pass $mode` to compiletest through `./x.py`) - #61818 (Issue #60709 test) - #62023 (publish_toolstate: don't use 'new' from inside the loop) - #62104 (Inform the query system about properties of queries at compile time) - #62163 (Avoid mem::uninitialized() in std::sys::unix) - #62204 (doc(libcore) Fix CS) Failed merges: r? @ghost
Using rustc 1.36.0-nightly (3991285 2019-04-25), the following test compiles to
ud2
, when using the following command:rustc --edition=2018 -Copt-level=z -Cdebuginfo=2 --test test.rs -o test
. Both theopt-level
anddebuginfo
are necessary to getud2
.@cramertj @tmandry
The text was updated successfully, but these errors were encountered: