about summary refs log tree commit diff
path: root/compiler
AgeCommit message (Expand)AuthorLines
2022-07-14Auto merge of #99231 - Dylan-DPC:rollup-0tl8c0o, r=Dylan-DPCbors-134/+459
2022-07-14Rollup merge of #99126 - NiklasJonsson:84447/rustc_span, r=petrochenkovDylan DPC-1/+6
2022-07-14Rollup merge of #98705 - WaffleLapkin:closure_binder, r=cjgillotDylan DPC-121/+425
2022-07-14Rollup merge of #97720 - cjgillot:all-fresh, r=petrochenkovDylan DPC-12/+28
2022-07-14Auto merge of #98975 - jyn514:unstable_opts, r=wesleywiserbors-363/+364
2022-07-14Auto merge of #98754 - jyn514:non-trivial-drop, r=compiler-errorsbors-3/+25
2022-07-13Rename `debugging_opts` to `unstable_opts`Joshua Nelson-363/+364
2022-07-13add array tests, cleanup, tidy, and blessRalf Jung-2/+3
2022-07-13assigning to a union field can never drop nowRalf Jung-38/+11
2022-07-13remove untagged_union feature gateRalf Jung-76/+37
2022-07-13also allow arrays of allowed typesRalf Jung-0/+5
2022-07-13allow unions with mutable references and tuples of allowed typesRalf Jung-5/+22
2022-07-13factor 'is this type allowed as union field on stable' into separate functionRalf Jung-3/+11
2022-07-13reduce scope of allow(rustc::potential_query_instability) in rustc_spanNiklas Jonsson-1/+6
2022-07-13Auto merge of #99210 - Dylan-DPC:rollup-879cp1t, r=Dylan-DPCbors-336/+480
2022-07-13Auto merge of #98145 - ouz-a:some_branch, r=oli-obkbors-27/+205
2022-07-13Rollup merge of #99199 - TaKO8Ki:remove-unnecessary-span-to-snippet, r=cjgillotDylan DPC-14/+11
2022-07-13Rollup merge of #99155 - Amanieu:unstable-target-features, r=davidtwcoDylan DPC-28/+38
2022-07-13Rollup merge of #99030 - rust-lang:notriddle/field-recovery, r=petrochenkovDylan DPC-0/+18
2022-07-13Rollup merge of #99011 - oli-obk:UnsoundCell, r=eddybDylan DPC-58/+53
2022-07-13Rollup merge of #98574 - dingxiangfei2009:let-else-thir, r=oli-obkDylan DPC-236/+360
2022-07-13Add feature gate.Camille GILLOT-1/+19
2022-07-13Always use CreateParameter mode for function definitions.Camille GILLOT-11/+9
2022-07-13Rollup merge of #99185 - krasimirgg:llvm-wrapper-inlineasm, r=nikicGuillaume Gomez-0/+6
2022-07-13Rollup merge of #99020 - fee1-dead-contrib:repr_transparent_non_exhaustive, r...Guillaume Gomez-5/+121
2022-07-13fix documentationDeadbeef-6/+10
2022-07-13avoid `&str` to `String` conversionsTakayuki Maeda-2/+2
2022-07-13remove an unnecessary `span_to_snippet`Takayuki Maeda-12/+9
2022-07-13Auto merge of #99101 - RalfJung:interpret-projections, r=oli-obkbors-432/+540
2022-07-12Add back expr size checksMaybe Waffle-3/+3
2022-07-12Add an indirection for closures in `hir::ExprKind`Maybe Waffle-79/+101
2022-07-12Add `LifetimeBinderKind::Closure`Maybe Waffle-1/+3
2022-07-12make for<> in closures a possible place to suggest adding named lifetimeMaybe Waffle-4/+36
2022-07-12Lower closure binders to hir & properly check themMaybe Waffle-31/+181
2022-07-12Update compiler/rustc_parse/src/parser/expr.rsMichael Howell-1/+1
2022-07-12llvm-wrapper: adapt for LLVM API changeKrasimir Georgiev-0/+6
2022-07-12Comment out expr size checkMaybe Waffle-3/+3
2022-07-12Parse closure bindersMaybe Waffle-38/+136
2022-07-12Rollup merge of #99154 - rosehuds:master, r=cjgillotDylan DPC-5/+3
2022-07-12Rollup merge of #99038 - jackh726:earlybinder-cleanup, r=lcnrDylan DPC-45/+57
2022-07-12Rollup merge of #98972 - TaKO8Ki:suggest-adding-missing-zero-to-floating-poin...Dylan DPC-4/+45
2022-07-12Rollup merge of #98633 - c410-f3r:yet-another-let-chain, r=estebankDylan DPC-8/+24
2022-07-12Rollup merge of #98622 - petrochenkov:executables, r=oli-obkDylan DPC-52/+3
2022-07-12add new rval, pull deref earlyouz-a-27/+205
2022-07-12fix the typoDing Xiang Fei-4/+2
2022-07-12check non_exhaustive attr and private fields for transparent typesDeadbeef-5/+117
2022-07-12implement a suggestion for a floating point number with a type suffixTakayuki Maeda-9/+33
2022-07-11use a loop rather than try_foldRalf Jung-23/+21
2022-07-11interpret: refactor projection handling codeRalf Jung-421/+531
2022-07-11add tests for async awaitDing Xiang Fei-15/+15