summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | | | | | | | Auto merge of #50494 - F001:as_cell, r=alexcrichtonbors2018-07-232-43/+111
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | use inherent method insteadF0012018-07-232-15/+22
| * | | | | | | | | | | revert DerefF0012018-07-182-18/+10
| * | | | | | | | | | | remove useless feature(repr_transparent)F0012018-07-171-1/+0
| * | | | | | | | | | | impl DerefMut for Cell<[T]>F0012018-07-171-0/+10
| * | | | | | | | | | | code style fixesF0012018-07-172-4/+7
| * | | | | | | | | | | impl `Deref` instead of `Index`F0012018-07-172-10/+9
| * | | | | | | | | | | use lifetime elision for consistencyF0012018-07-171-1/+1
| * | | | | | | | | | | remove "get_with" methodF0012018-07-172-26/+2
| * | | | | | | | | | | add repr transparentF0012018-07-171-0/+1
| * | | | | | | | | | | implement rfc 1789F0012018-07-172-44/+125
* | | | | | | | | | | | Auto merge of #52566 - pnkfelix:buffer-nll-errors-for-z-borrowck-migrate, r=n...bors2018-07-2315-81/+161
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Thread the `errors_buffer` down through the NLL region_infer code.Felix S. Klock II2018-07-231-5/+7
| * | | | | | | | | | | | Separate the construction of a generic bound failure from its emission.Felix S. Klock II2018-07-231-4/+20
| * | | | | | | | | | | | thread the `errors_buffer` down into `nll::type_check`.Felix S. Klock II2018-07-232-15/+34
| * | | | | | | | | | | | Buffer errors in MIR borrow checkSantiago Pastorino2018-07-238-43/+87
| * | | | | | | | | | | | Remove redundant outlives declarationsSantiago Pastorino2018-07-231-2/+2
| * | | | | | | | | | | | Remove wrong allow(dead_code) directiveSantiago Pastorino2018-07-231-1/+0
| * | | | | | | | | | | | Remove unneded lifetimes relations declarationSantiago Pastorino2018-07-231-2/+2
| * | | | | | | | | | | | Let mir reference lifetime be inferredSantiago Pastorino2018-07-231-2/+2
| * | | | | | | | | | | | Let lifetimes on find be inferredSantiago Pastorino2018-07-231-4/+4
| * | | | | | | | | | | | Remove unused lifetime annotationSantiago Pastorino2018-07-231-1/+1
| * | | | | | | | | | | | gcx outlives tcx which outlives a, no need to explicitly do gcx: aSantiago Pastorino2018-07-231-1/+1
| * | | | | | | | | | | | Remove duplicated report word in docsSantiago Pastorino2018-07-231-1/+1
| | |/ / / / / / / / / / | |/| | | | | | | | | |
* | | | | | | | | | | | Auto merge of #52639 - oli-obk:clippyup, r=kennytmbors2018-07-231-5/+5
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Update the clippy submoduleOliver Schneider2018-07-231-5/+5
| | |_|_|_|_|_|_|_|/ / / | |/| | | | | | | | | |
* | | | | | | | | | | | Auto merge of #52506 - alexcrichton:dont-duplicate-wasm-sections, r=michaelwo...bors2018-07-234-1/+95
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | rustc: Work around an upstream wasm ThinLTO bugAlex Crichton2018-07-184-1/+95
* | | | | | | | | | | | | Auto merge of #52589 - petrochenkov:derlint, r=alexcrichtonbors2018-07-233-17/+49
|\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | Attach deprecation lint `proc_macro_derive_resolution_fallback` to a specific...Vadim Petrochenkov2018-07-213-17/+49
| | |_|_|_|_|_|_|_|_|/ / / | |/| | | | | | | | | | |
* | | | | | | | | | | | | Auto merge of #52211 - bjorn3:misc_rustdoc_changes, r=QuietMisdreavusbors2018-07-233-16/+4
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / / / |/| | | | | | | | | | | |
| * | | | | | | | | | | | Misc rustdoc changesbjorn32018-07-133-16/+4
* | | | | | | | | | | | | Auto merge of #52612 - matthewjasper:remove-unnecessary-flow, r=nikomatsakisbors2018-07-232-19/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / / / |/| | | | | | | | | | | |
| * | | | | | | | | | | | Don't keep the possibly init flow around longer than neededMatthew Jasper2018-07-222-19/+1
| | |_|_|_|/ / / / / / / | |/| | | | | | | | | |
* | | | | | | | | | | | Auto merge of #52571 - oli-obk:promotion_abort, r=nagisabors2018-07-232-3/+46
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Use correct exclusion commentOliver Schneider2018-07-221-1/+2
| * | | | | | | | | | | | don't spawn processes on wasmOliver Schneider2018-07-211-0/+2
| * | | | | | | | | | | | Add trailing newlineOliver Schneider2018-07-201-1/+1
| * | | | | | | | | | | | Add testOliver Schneider2018-07-201-0/+35
| * | | | | | | | | | | | Abort instead of UB if promotion failsOliver Schneider2018-07-201-3/+8
* | | | | | | | | | | | | Auto merge of #52568 - oli-obk:span_bug_error, r=varkorbors2018-07-2312-46/+151
|\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | Sequence-field should have plural nameOliver Schneider2018-07-211-4/+4
| * | | | | | | | | | | | | Properly scope label resolutionOliver Schneider2018-07-206-36/+115
| * | | | | | | | | | | | | Remove outdated commentOliver Schneider2018-07-201-3/+0
| * | | | | | | | | | | | | Make sure the compiler actually panics on `delay_span_bug`Oliver Schneider2018-07-205-7/+36
| | |_|_|_|_|_|/ / / / / / | |/| | | | | | | | | | |
* | | | | | | | | | | | | Auto merge of #52564 - pnkfelix:issue-52126-lhs-of-assign-op-is-invariant, r=...bors2018-07-225-12/+107
|\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | For some reason, on my linux box, using `-Zverbose` here is causing a linker ...Felix S. Klock II2018-07-201-1/+1
| * | | | | | | | | | | | | Regression test for issue.Felix S. Klock II2018-07-203-0/+88
| * | | | | | | | | | | | | When type-checking binops, LHS of assign-op like `+=` is invariant.Felix S. Klock II2018-07-201-11/+18
* | | | | | | | | | | | | | Auto merge of #52069 - zackmdavis:elided_states_of_america—and_to_the_re-pu...bors2018-07-229-53/+324
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|_|_|_|/ / |/| | | | | | | | | | | | |