summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Auto merge of #54530 - pnkfelix:issue-54047-migrate-ui-run-pass-back-to-run-p...bors2018-09-273624-36530/+37501
|\
| * Allow `unused_variables` lint to placate test failure exposed by macos builders.Felix S. Klock II2018-09-271-0/+1
| * Allow more lints that signalled on the arm-android test run.Felix S. Klock II2018-09-272-1/+3
| * Allow some lints that only fired on 32-bit and/or Windows.Felix S. Klock II2018-09-272-0/+2
| * Add `#[allow(unused_mut)]` for various cases that arise only in compare-mode=...Felix S. Klock II2018-09-263-0/+3
| * Add `#![allow(..)]` as necessary to get re-migrated run-pass tests compiling ...Felix S. Klock II2018-09-26822-67/+1030
| * Migrate `src/test/ui/run-pass/*` back to `src/test/run-pass/`.Felix S. Klock II2018-09-262795-0/+0
* | Auto merge of #54468 - matthewjasper:fix-polonius, r=nikomatsakisbors2018-09-2710-80/+172
|\ \
| * | Get Polonius borrow check to work in simple casesMatthew Jasper2018-09-2610-80/+172
* | | Auto merge of #54533 - ljedrz:cleanup_librustc_typeck_check, r=davidtwcobors2018-09-2719-581/+450
|\ \ \
| * | | A few cleanups and minor improvements to typeckljedrz2018-09-2719-581/+450
* | | | Auto merge of #54355 - pnkfelix:issue-22323-regression-test, r=davidtwcobors2018-09-271-0/+32
|\ \ \ \
| * | | | Regression test for rust-lang/rust#22323.Felix S. Klock II2018-09-191-0/+32
* | | | | Auto merge of #52319 - tinco:issue_12590, r=pnkfelixbors2018-09-2712-17/+143
|\ \ \ \ \
| * | | | | update result of issue 12590 testTinco Andringa2018-09-101-1/+1
| * | | | | reintroduce inline to libsyntax testTinco Andringa2018-09-101-54/+1
| * | | | | refactor so that it's no longer possible to call print_source incorrectlyTinco Andringa2018-09-101-11/+14
| * | | | | dont pass in src if we are not reading from stdin in compiletestTinco Andringa2018-09-101-1/+6
| * | | | | Fixed the test to match the compiler's output.Felix S. Klock II2018-09-101-6/+10
| * | | | | Update `compiletest` so that the pretty tests only read from stdin when they ...Felix S. Klock II2018-09-101-4/+16
| * | | | | Correctly close indentation blocks when pretty printing non-inline moduleTinco Andringa2018-09-102-2/+4
| * | | | | pretty=expanded should expand mod declarationsTinco Andringa2018-09-104-6/+55
| * | | | | Track whether module declarations are inline (fixes #12590)Tinco Andringa2018-09-109-10/+114
* | | | | | Auto merge of #54581 - petrochenkov:cfgattr, r=alexcrichtonbors2018-09-273-0/+28
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | |
| * | | | | Accept trailing comma in `cfg_attr`Vadim Petrochenkov2018-09-263-0/+28
* | | | | | Auto merge of #54526 - nnethercote:shrink-StatementKind, r=nagisabors2018-09-2625-62/+83
|\ \ \ \ \ \
| * | | | | | Shrink StatementKind::InlineAsm.Nicholas Nethercote2018-09-246-9/+21
| * | | | | | Shrink StatementKind::Assign.Nicholas Nethercote2018-09-2420-53/+62
* | | | | | | Auto merge of #54561 - matthiaskrgr:clippy_up, r=kennytmbors2018-09-262-14/+15
|\ \ \ \ \ \ \ | |_|_|_|_|/ / |/| | | | | |
| * | | | | | update clippy submodule to a72e786cMatthias Krüger2018-09-262-14/+15
* | | | | | | Auto merge of #54453 - nikomatsakis:nll-issue-53121-shred-outlives, r=pnkfelixbors2018-09-2644-1603/+2573
|\ \ \ \ \ \ \
| * | | | | | | rustc_driver/test.rs: rustfmtNiko Matsakis2018-09-261-163/+219
| * | | | | | | fix rustc_driver testsNiko Matsakis2018-09-261-2/+2
| * | | | | | | pacify the mercilous tidy.Niko Matsakis2018-09-263-3/+15
| * | | | | | | rustfmt `error_reporting/mod.rs` and `dropck.rs`Niko Matsakis2018-09-262-107/+138
| * | | | | | | update tests and add stderr filesNiko Matsakis2018-09-2610-81/+72
| * | | | | | | convert from an `UnlessNll` flag to a `SuppressRegionErrors` flagNiko Matsakis2018-09-266-40/+55
| * | | | | | | make NLL handle `IfEq` bounds by using SCC normalizationNiko Matsakis2018-09-2610-9/+630
| * | | | | | | switch to use `VerifyBound` instead of `RegionTest`Niko Matsakis2018-09-262-72/+27
| * | | | | | | region_infer: rustfmtNiko Matsakis2018-09-261-4/+2
| * | | | | | | use `IfEq` to defer equality comparison around `where` clauses`Niko Matsakis2018-09-262-49/+59
| * | | | | | | refactor away `AnyRegions` and `AllRegions`Niko Matsakis2018-09-265-69/+61
| * | | | | | | introduce `VerifyBound::IfEq` (presently unused)Niko Matsakis2018-09-263-26/+111
| * | | | | | | change to use impl Trait a bitNiko Matsakis2018-09-261-14/+15
| * | | | | | | remove handling of verify from taintsetNiko Matsakis2018-09-262-37/+25
| * | | | | | | make `normalize` work on any type-foldableNiko Matsakis2018-09-261-11/+19
| * | | | | | | lexical_region_resolve: rustfmtNiko Matsakis2018-09-261-44/+30
| * | | | | | | encapsulate `infcx` too into the delegateNiko Matsakis2018-09-261-34/+84
| * | | | | | | extract out NLL-specific code from relate-tys into a delegateNiko Matsakis2018-09-261-53/+84
| * | | | | | | refactor NLL relate_tys to use Region internally, not RegionVidNiko Matsakis2018-09-261-59/+42