8000 Rollup of 14 pull requests by JohnTitor · Pull Request #65716 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 14 pull requests #65716

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

Merged
merged 43 commits into from
Oct 23, 2019
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
cabcd99
Mention keyword closing policy
Oct 2, 2019
59ce359
Fix typo
Oct 2, 2019
77f0aaf
Add more coherence tests
weiznich Oct 12, 2019
b9bca18
Replaced warn attibute by deny
Oct 17, 2019
43b5dca
Replaced warn attribute by deny
Oct 17, 2019
46a4466
Replaced pretty-json error-format with only json
Oct 17, 2019
a1387e3
Replaced pretty-json error-format with only json
Oct 17, 2019
95d98af
Added text after error messages
Oct 18, 2019
1c85b45
Apply suggested wording
Oct 18, 2019
7e17ea3
Fix test paths
weiznich Oct 19, 2019
1e2b711
fix WASI sleep impl
newpavlov Oct 20, 2019
429f91c
Add long error explanation for E0588
GuillaumeGomez Oct 19, 2019
2541d49
Update ui tests
GuillaumeGomez Oct 19, 2019
8774484
Add option to disable keyboard shortcuts in docs
GuillaumeGomez Oct 21, 2019
cde60e8
Add long error explanation for E0728
JohnTitor Oct 21, 2019
4fcc784
Apply suggestions
JohnTitor Oct 22, 2019
3f1af90
Code cleanups following up on #65576.
sunfishcode Oct 22, 2019
40f92b3
refactor maybe_append
yjhmelody Oct 22, 2019
a239c8d
Add test for issue-41366
JohnTitor Oct 22, 2019
dd0f98b
Add test for issue-51431
JohnTitor Oct 22, 2019
93fab98
Add test for issue-52437
JohnTitor Oct 22, 2019
768965a
bring back some Debug instances for Miri
RalfJung Oct 22, 2019
fc5b485
add comments
RalfJung Oct 22, 2019
7a85c43
Add test for issue-63496
JohnTitor Oct 22, 2019
07f2f05
Update error_codes.rs
Dylan-DPC Oct 22, 2019
66a0253
self-profiling: Remove module names from some event-ids in codegen ba…
michaelwoerister Oct 22, 2019
a1f6589
Add link to async/await
JohnTitor Oct 22, 2019
de3fd02
Target-feature documented as unsafe. rustc book and rustc -C help hav…
togiberlin Sep 4, 2019
8497f79
Add missing space in librustdoc
popzxc Oct 22, 2019
8699227
Rollup merge of #64145 - togiberlin:feature/target-features-doc, r=ehuss
JohnTitor Oct 23, 2019
bd82de0
Rollup merge of #65007 - BO41:keywords, r=nikomatsakis
JohnTitor Oct 23, 2019
557d276
Rollup merge of #65417 - weiznich:more_coherence_tests, r=nikomatsakis
JohnTitor Oct 23, 2019
1dbb010
Rollup merge of #65507 - polyedre:master, r=nikomatsakis
JohnTitor Oct 23, 2019
6f6f3e8
Rollup merge of #65591 - GuillaumeGomez:long-err-explanation-E0588, r…
JohnTitor Oct 23, 2019
ff2442f
Rollup merge of #65617 - newpavlov:patch-2, r=alexcrichton
JohnTitor Oct 23, 2019
88e3ae2
Rollup merge of #65656 - GuillaumeGomez:option-disable-shortcut, r=Dy…
JohnTitor Oct 23, 2019
b799465
Rollup merge of #65678 - JohnTitor:add-e0728-explanation, r=Guilliaum…
JohnTitor Oct 23, 2019
7fc6ce9
Rollup merge of #65681 - sunfishcode:followup, r=Centril
JohnTitor Oct 23, 2019
5bac361
Rollup merge of #65686 - yjhmelody:yjhmelody-patch-1, r=Centril
JohnTitor Oct 23, 2019
c3e5413
Rollup merge of #65688 - JohnTitor:add-some-tests, r=Dylan-DPC
JohnTitor Oct 23, 2019
12f32c2
Rollup merge of #65689 - RalfJung:miri-debug, r=Centril
JohnTitor Oct 23, 2019
41850df
Rollup merge of #65695 - michaelwoerister:fix-self-profiling-work-ite…
JohnTitor Oct 23, 2019
1df9081
Rollup merge of #65706 - popzxc:add-missing-space, r=Mark-Simulacrum
JohnTitor Oct 23, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bring back some Debug instances for Miri
  • Loading branch information
RalfJung committed Oct 22, 2019
commit 768965a2a65277a59bf6fb8d37ee5fbcfa57dc8c
4 changes: 2 additions & 2 deletions src/librustc_mir/interpret/eval_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ pub struct Frame<'mir, 'tcx, Tag=(), Extra=()> {
pub extra: Extra,
}

#[derive(Clone, Eq, PartialEq)]
#[derive(Clone, Eq, PartialEq, Debug)]
pub enum StackPopCleanup {
/// Jump to the next block in the caller, or cause UB if None (that's a function
/// that may never return). Also store layout of return place so
Expand All @@ -113,7 +113,7 @@ pub struct LocalState<'tcx, Tag=(), Id=AllocId> {
}

/// Current value of a local variable
#[derive(Clone, PartialEq, Eq)]
#[derive(Clone, PartialEq, Eq, Debug)]
pub enum LocalValue<Tag=(), Id=AllocId> {
/// This local is not currently alive, and cannot be used at all.
Dead,
Expand Down
0