summaryrefslogtreecommitdiff
path: root/compiler
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | | | | | 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
| |\ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|/ / / / / / / | |/| | | | | | | | | | |
| | * | | | | | | | | | | fmtyukang2023-05-131-6/+3
| | * | | | | | | | | | | Fix ice caused by shorthand fields in NoFieldsForFnCallyukang2023-05-131-0/+7
| | | |_|_|_|_|_|/ / / / | | |/| | | | | | | | |
* | | | | | | | | | | | Auto merge of #111088 - nnethercote:fix-FileEncoder-buf-size, r=WaffleLapkinbors2023-05-151-33/+11
|\ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / |/| | | | | | | | | | |
| * | | | | | | | | | | Fix the `FileEncoder` buffer size.Nicholas Nethercote2023-05-151-33/+11
| | |_|_|_|/ / / / / / | |/| | | | | | | | |
* | | | | | | | | | | Auto merge of #111570 - compiler-errors:ct-err, r=BoxyUwUbors2023-05-1511-32/+24
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / |/| | | | | | | | | |
| * | | | | | | | | | Rename const error methods for consistencyMichael Goulet2023-05-1411-32/+24
* | | | | | | | | | | Auto merge of #108638 - Zoxc:erase-query-values-map, r=cjgillotbors2023-05-1411-246/+376
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / |/| | | | | | | | | |
| * | | | | | | | | | Use dynamic dispatch for queriesJohn Kåre Alsaker2023-04-3011-246/+376
* | | | | | | | | | | Auto merge of #111517 - lukas-code:addr-of-mutate, r=tmiaskobors2023-05-141-17/+17
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / / |/| | | | | | | | | |
| * | | | | | | | | | allow mutating function args through `&raw const`Lukas Markeffsky2023-05-131-5/+16
| * | | | | | | | | | remove no-op logicLukas Markeffsky2023-05-121-13/+2
| | |/ / / / / / / / | |/| | | | | | | |
* | | | | | | | | | Auto merge of #111552 - matthiaskrgr:rollup-4nidoti, r=matthiaskrgrbors2023-05-144-7/+42
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / / |/| | | | | | | | |
| * | | | | | | | | Rollup merge of #111477 - y21:extra-impl-in-trait-impl, r=compiler-errorsMatthias Krüger2023-05-143-4/+33
| |\ \ \ \ \ \ \ \ \
| | * | | | | | | | | improve error for `impl<..> impl Trait for Type`y212023-05-133-4/+33
| | | |_|/ / / / / / | | |/| | | | | | |
| * | | | | | | | | Rollup merge of #111463 - clubby789:env-escaped-var, r=cjgillotMatthias Krüger2023-05-141-3/+9
| |\ \ \ \ \ \ \ \ \
| | * | | | | | | | | Better diagnostics for `env!` where variable contains escapeclubby7892023-05-111-3/+9
* | | | | | | | | | | Auto merge of #111440 - cjgillot:refprop-debuginfo, r=oli-obkbors2023-05-1410-68/+180
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / |/| | | | | | | | | |
| * | | | | | | | | | Do not ICE on deeply nested borrows.Camille GILLOT2023-05-131-2/+4