Skip to content

Rollup of 12 pull requests #52988

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

Closed
wants to merge 37 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
ef6fddd
cleanup: Remove `Def::GlobalAsm`
petrochenkov Jul 30, 2018
e9509d7
Disable debug sections when optimization flags is set for LLD.
yurydelendik Jul 31, 2018
77aa031
Calculate capacity when collecting into Option and Result
ljedrz Jul 31, 2018
5e70e5e
Move validate_crate_name to rustc_metadata
Mark-Simulacrum Jul 31, 2018
8752e61
Delete dummy crate store
Mark-Simulacrum Jul 31, 2018
5ce5f31
check_const: use the same ParamEnv as codegen for statics
RalfJung Jul 31, 2018
d148b41
Visibility is now a query
Mark-Simulacrum Jul 31, 2018
222dd17
add comment
RalfJung Aug 1, 2018
0da7da8
Align 6-week cycle check with beta promotion instead of stable release.
kennytm Aug 1, 2018
424f6bd
Store concrete crate stores where possible
Mark-Simulacrum Jul 31, 2018
dd753cd
Move unused trait functions to inherent functions
Mark-Simulacrum Jul 31, 2018
c3618c8
Special-case `Box` in `rustc_mir::borrow_check`.
pnkfelix Jul 26, 2018
1863cb7
Errors are more specific in cases where borrows are used in future it…
davidtwco Aug 1, 2018
88284ba
minor fallout from the change.
pnkfelix Jul 27, 2018
08b3a8e
Regression tests.
pnkfelix Jul 27, 2018
469d6a8
Test for (previously uncaught) infinite loop identified by matthewjas…
pnkfelix Jul 30, 2018
a1b8a93
Expand long-live-borrows-in-boxes test to include simplier illustrati…
pnkfelix Jul 30, 2018
c02c00b
Fix bug in test pointed out during review.
pnkfelix Jul 30, 2018
01cf9bf
Update LLVM submodule
cramertj Aug 1, 2018
66a4718
rustbuild: fix local_rebuild
Keruspe Aug 2, 2018
2488cb6
Explicitly label any named lifetimes mentioned in error messages.
davidtwco Aug 2, 2018
bb88c98
Add lldb to the build
tromey Jul 3, 2018
4aa21d1
Ignore clang and lldb in tidy
tromey Jul 26, 2018
7707578
Do not try to distribute lldb if it was not built
tromey Jul 27, 2018
1d43f25
Handle the dry_run case in the lldb dist step
tromey Jul 27, 2018
5c54bd9
Rollup merge of #52716 - tromey:rustup-lldb, r=Mark-Simulacrum
cramertj Aug 2, 2018
45abb02
Rollup merge of #52782 - pnkfelix:issue-45696-dangly-paths-for-box, r…
cramertj Aug 2, 2018
a94309c
Rollup merge of #52886 - petrochenkov:noga, r=alexcrichton
cramertj Aug 2, 2018
9a7af03
Rollup merge of #52887 - yurydelendik:disable-lld-symbols, r=alexcric…
cramertj Aug 2, 2018
5375ce4
Rollup merge of #52910 - ljedrz:fix_48994, r=sfackler
cramertj Aug 2, 2018
78560fa
Rollup merge of #52925 - RalfJung:sanity_check, r=oli-obk
cramertj Aug 2, 2018
83b3288
Rollup merge of #52927 - Mark-Simulacrum:cratestore-cleanup, r=varkor
cramertj Aug 2, 2018
3d60b78
Rollup merge of #52940 - kennytm:move-checktool-protection-week, r=al…
cramertj Aug 2, 2018
869731b
Rollup merge of #52948 - davidtwco:issue-52633-later-loop-iteration, …
cramertj Aug 2, 2018
4889e0f
Rollup merge of #52952 - cramertj:llvm-update, r=alexcrichton
cramertj Aug 2, 2018
9979b16
Rollup merge of #52969 - Keruspe:local_rebuild, r=alexcrichton
cramertj Aug 2, 2018
ad7b17a
Rollup merge of #52973 - davidtwco:issue-52663-lifetimes-not-included…
cramertj Aug 2, 2018
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
Fix bug in test pointed out during review.
  • Loading branch information
pnkfelix committed Aug 1, 2018
commit c02c00b8455d6ec6eff50ae94bebb4a424c95e02
4 changes: 2 additions & 2 deletions src/test/ui/issue-45696-no-variant-box-recur.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ struct E { field: F }
struct F { field: Box<E> }

// indirect non-regular recursion with indirect ownership via box.
struct G { field: (F, F) }
struct H { field: Box<E> }
struct G { field: (H, H) }
struct H { field: Box<G> }

// These enums are cases that are not currently hit by the
// `visit_terminator_drop` recursion down a type's structural
Expand Down