about summary refs log tree commit diff
path: root/compiler/rustc_middle/src/values.rs
AgeCommit message (Collapse)AuthorLines
2022-11-09Add domain size check to fix ICECameron Steffen-1/+2
2022-10-10Check representability in adt_sized_constraintCameron Steffen-13/+1
2022-10-07Rewrite representabilityCameron Steffen-5/+165
2022-09-06Make `HandleCycleError` an enum instead of a macro-generated closureJoshua Nelson-0/+54
- Add a `HandleCycleError` enum to rustc_query_system, along with a `handle_cycle_error` function - Move `Value` to rustc_query_system, so `handle_cycle_error` can use it - Move the `Value` impls from rustc_query_impl to rustc_middle. This is necessary due to orphan rules.