summaryrefslogtreecommitdiff
path: root/compiler
Commit message (Expand)AuthorAgeFilesLines
* Move rustc_middle/src/ty/query.rs to rustc_middle/src/query/plumbing.rsJohn Kåre Alsaker2023-05-171-0/+0
* Auto merge of #111650 - matthiaskrgr:rollup-n7w17v4, r=matthiaskrgrbors2023-05-169-44/+78
|\
| * Rollup merge of #111610 - bvanjoi:fix-99597, r=compiler-errorsMatthias Krüger2023-05-161-31/+46
| |\
| | * fix(diagnostic): wrap parens for ref impl trait parambohan2023-05-161-31/+46
| * | Rollup merge of #111573 - compiler-errors:erase-re-error, r=WaffleLapkinMatthias Krüger2023-05-161-1/+3
| |\ \
| | * | Erase ReError properlyMichael Goulet2023-05-141-1/+3
| * | | Rollup merge of #111533 - clubby789:drop-tracking-error, r=oli-obkMatthias Krüger2023-05-166-11/+14
| |\ \ \
| | * | | Handle error body when in generator layoutclubby7892023-05-136-11/+14
| * | | | Use error term if missing associated item in new solverMichael Goulet2023-05-161-1/+15
* | | | | Auto merge of #108062 - Zoxc:spec-incr, r=cjgillotbors2023-05-164-17/+76
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Specialize query execution for incremental and non-incrementalJohn Kåre Alsaker2023-05-144-17/+76
| | |/ / | |/| |
* | | | Auto merge of #105750 - oli-obk:valtrees, r=lcnrbors2023-05-164-54/+84
|\ \ \ \
| * | | | Document how constants as opaque patterns behave differently.Oli Scherer2023-05-162-4/+20
| * | | | Update some commentsOli Scherer2023-05-151-9/+5
| * | | | Always fall back to PartialEq when a constant in a pattern is not recursively...Oli Scherer2023-05-152-36/+51
| * | | | Unnest a variable in prep for the next commit which needs access to the placeOli Scherer2023-05-151-5/+8
| | |_|/ | |/| |
* | | | Rollup merge of #111605 - klensy:fixup_version, r=compiler-errorsNilstrieb2023-05-161-1/+1
|\ \ \ \
| * | | | fixup version placeholder for cfi_encoding featureklensy2023-05-151-1/+1
* | | | | Rollup merge of #111602 - tmiasko:erroneous-constant-used, r=oli-obkNilstrieb2023-05-1613-26/+60
|\ \ \ \ \
| * | | | | Suppress "erroneous constant used" for constants tainted by errorsTomasz Miąsko2023-05-1513-26/+60
* | | | | | Rollup merge of #111572 - kpreid:mdi, r=compiler-errorsNilstrieb2023-05-161-2/+2
|\ \ \ \ \ \
| * | | | | | Document that `missing_copy_implementations` and `missing_debug_implementatio...Kevin Reid2023-05-141-2/+2
| | |_|_|/ / | |/| | | |
* | | | | | Rollup merge of #111449 - compiler-errors:recover-impl-generics-correctly, r=...Nilstrieb2023-05-161-0/+5
|\ \ \ \ \ \
| * | | | | | Recover `impl<T ?Sized>` correctlyMichael Goulet2023-05-151-0/+5
| | |/ / / / | |/| | | |
* | | | | | Rollup merge of #111428 - bvanjoi:fix-109250, r=NilstriebNilstrieb2023-05-161-4/+0
|\ \ \ \ \ \
| * | | | | | refactor(resolve): clean up the early error return caused by non-callbohan2023-05-101-4/+0
* | | | | | | Auto merge of #111221 - compiler-errors:yeet-generalizer, r=lcnrbors2023-05-1511-831/+582
|\ \ \ \ \ \ \
| * | | | | | | Replace RelationDir with VarianceMichael Goulet2023-05-154-63/+29
| * | | | | | | Rename super_relate_* to structurally_relate_*Michael Goulet2023-05-156-23/+26
| * | | | | | | Tweaks and a testMichael Goulet2023-05-151-51/+52
| * | | | | | | yeet ConstInferUnifierMichael Goulet2023-05-153-180/+81
| * | | | | | | Simplify delegateMichael Goulet2023-05-153-69/+70
| * | | | | | | Combine TypeGeneralizer and GeneralizerMichael Goulet2023-05-154-588/+467
| | |/ / / / / | |/| | | | |
* | | | | | | Auto merge of #107707 - calebzulawski:remove-features, r=Amanieubors2023-05-152-9/+0
|\ \ \ \ \ \ \
| * | | | | | | Remove misleading target feature aliasesCaleb Zulawski2023-02-052-9/+0
* | | | | | | | Rollup merge of #111587 - cbeuw:copy-for-deref, r=oli-obkMatthias Krüger2023-05-151-0/+1
|\ \ \ \ \ \ \ \
| * | | | | | | | Add CopyForDeref to custom MIRAndy Wang2023-05-151-0/+1
| | |_|_|_|/ / / | |/| | | | | |
* | | | | | | | Rollup merge of #111584 - nnethercote:number-lexing-tweaks, r=matkladMatthias Krüger2023-05-151-12/+16
|\ \ \ \ \ \ \ \
| * | | | | | | | Don't try to eat non-existent decimal digits.Nicholas Nethercote2023-05-151-2/+6
| * | | | | | | | Make `Cursor::number` less DRY.Nicholas Nethercote2023-05-151-10/+10
| | |_|_|_|/ / / | |/| | | | | |
* | | | | | | | Rollup merge of #111578 - Zoxc:query-macro-move, r=cjgillotMatthias Krüger2023-05-15100-218/+253
|\ \ \ \ \ \ \ \ | |_|_|_|/ / / / |/| | | | | | |
| * | | | | | | Move expansion of query macros in rustc_middle to rustc_middle::queryJohn Kåre Alsaker2023-05-15100-218/+253
| |/ / / / / /
* | | | | | | Auto merge of #111585 - matthiaskrgr:rollup-468pykj, r=matthiaskrgrbors2023-05-157-39/+39
|\ \ \ \ \ \ \ | |_|_|_|_|/ / |/| | | | | |
| * | | | | | Rollup merge of #111560 - m-ou-se:span-char-boundary-stuff, r=cjgillotMatthias Krüger2023-05-152-24/+8
| |\ \ \ \ \ \
| | * | | | | | Simplify find_width_of_character_at_span.Mara Bos2023-05-142-24/+8
| * | | | | | | Rollup merge of #111548 - calebcartwright:by-ref-tokentree2, r=compiler-errorsMatthias Krüger2023-05-151-0/+4
| |\ \ \ \ \ \ \
| | * | | | | | | refactor: add chunks method to TokenStream to obviate rustdoc clonesCaleb Cartwright2023-05-131-0/+4
| * | | | | | | | Rollup merge of #111547 - tmiasko:immediate-dominator, r=cjgillotMatthias Krüger2023-05-153-15/+23
| |\ \ \ \ \ \ \ \
| | * | | | | | | | Start node has no immediate dominatorTomasz Miąsko2023-05-143-15/+23
| * | | | | | | | | Rollup merge of #111531 - chenyukang:yukang-fix-111416-ice, r=compiler-errorsMatthias Krüger2023-05-151-0/+4
| |\ \ \ \ \ \ \ \ \ | | |_|_|_|_|/ / / / | |/| | | | | | | |