about summary refs log tree commit diff
path: root/compiler
AgeCommit message (Expand)AuthorLines
2021-09-15Move the Lock into symbol::Internerbjorn3-16/+21
2021-09-15chore(rustc_expand): fix typo in commentMichael Howell-1/+1
2021-09-15Move object safety suggestions to the end of the errorEsteban Kuber-6/+10
2021-09-15Check for shadowing issues involving block labelsTomasz Miąsko-1/+5
2021-09-15Fast reject for NeedsNonConstDropDeadbeef-1/+11
2021-09-15Auto merge of #87867 - bjorn3:unique_type_id_interner, r=wesleywiserbors-11/+60
2021-09-15Coerce const FnDefs to implement const Fn traitsDeadbeef-13/+24
2021-09-15Move is_const_fn to under TyCtxtDeadbeef-22/+23
2021-09-15inline(always) on check_recursion_limitDeadbeef-0/+1
2021-09-15Auto merge of #88558 - fee1-dead:const-drop, r=oli-obkbors-106/+278
2021-09-15Point to closure when emitting 'cannot move out' for captured variableFabian Wolff-4/+8
2021-09-15Fix handling of `hir::GenericArg::Infer` in `wrong_number_of_generic_args.rs`Fabian Wolff-9/+5
2021-09-14Remove concept of 'completion' from the projection cacheAaron Hill-51/+2
2021-09-14Fix ICE when `start` lang item has wrong genericsasquared31415-1/+1
2021-09-14Add reachable_patterns lint to rfc-2008-non_exhaustiveDevin Ragotzy-63/+286
2021-09-14review comment: move recovery code to its own functionEsteban Kuber-2/+19
2021-09-14Remove implementation of `min_align_of` intrinsicTomasz Miąsko-7/+2
2021-09-14Replace cnum_map with tcx.stable_crate_id_to_crate_num() in OnDiskCache.Michael Woerister-32/+7
2021-09-14rustc_metadata: Remove Metadata::raw_bytes() and use Metadata::blob() directl...Michael Woerister-7/+4
2021-09-14Rename DefPathHashMap in rustc_metadata so its name does not clash with DefPa...Michael Woerister-21/+19
2021-09-14Fix up comment about OnDiskCache::foreign_expn_data.Michael Woerister-2/+4
2021-09-14Make DefPathHash->DefId panic for if the mapping fails.Michael Woerister-25/+18
2021-09-14Remove RawDefId tracking infrastructure from incr. comp. framework.Michael Woerister-134/+6
2021-09-14Store DefPathHash->DefIndex map in on-disk-hash-table format in crate metadata.Michael Woerister-144/+131
2021-09-14Use on-disk-hash-table format for DefPathHashMap in hir::definitions.Michael Woerister-5/+54
2021-09-14Allow taking an OwningRef of the crate metadata blob.Michael Woerister-18/+62
2021-09-14Avoid unnecessary formatting when trace log level is disabledTomasz Miąsko-4/+5
2021-09-14Auto merge of #88914 - GuillaumeGomez:rollup-h5svc6w, r=GuillaumeGomezbors-11/+23
2021-09-13Auto merge of #87794 - bonega:enum_niche_prefer_zero, r=nagisabors-9/+43
2021-09-13enum niche allocation grows toward zero if possibleAndreas Liljeqvist-9/+43
2021-09-13Rollup merge of #88894 - FabianWolff:issue-88818, r=estebankGuillaume Gomez-1/+14
2021-09-13Rollup merge of #88859 - RalfJung:size-helpers, r=oli-obkGuillaume Gomez-8/+6
2021-09-13Rollup merge of #88851 - fee1-dead:dup-bound, r=oli-obkGuillaume Gomez-2/+3
2021-09-13Improve error message for type mismatch in generator argumentsFabian Wolff-14/+24
2021-09-13Auto merge of #87915 - estebank:fancy-spans, r=oli-obkbors-109/+147
2021-09-13error formatting and fix buildGus Wynn-17/+28
2021-09-13Update compiler/rustc_codegen_ssa/src/mir/mod.rsOli Scherer-1/+1
2021-09-13Fix debuginfo for ScalarPair abi parametersWesley Wiser-15/+10
2021-09-13Add tracing level for codegen_mirWesley Wiser-0/+1
2021-09-13Highlight the const function if error happened because of a bound on the impl...Waffle-2/+11
2021-09-13Use a separate interner type for UniqueTypeIdbjorn3-11/+60
2021-09-13Suggest replacing an inexisting field for an unmentioned fieldHirochika Matsumoto-1/+14
2021-09-13Auto merge of #88529 - Meziu:master, r=nagisabors-0/+45
2021-09-12chore: convert to a multi-part suggestionMichael Howell-3/+7
2021-09-12Auto merge of #88839 - nbdd0121:alignof, r=nagisabors-32/+53
2021-09-13Introduce NullOp::AlignOfGary Guo-32/+53
2021-09-12Do not issue E0071 if a type error has already been reportedFabian Wolff-16/+26
2021-09-12Auto merge of #88759 - Amanieu:panic_in_drop, r=nagisa,eddybbors-17/+65
2021-09-12Improve error message for missing trait in trait implFabian Wolff-1/+14
2021-09-12Auto merge of #88811 - jackh726:issue-88446, r=nikomatsakisbors-15/+24