| Age | Commit message (Expand) | Author | Lines |
| 2020-07-31 | Rename HAIR to THIR (Typed HIR). | Valentin Lazureanu | -1/+1 |
| 2020-07-31 | Auto merge of #74956 - ecstatic-morse:const-option-unwrap, r=oli-obk | bors | -0/+34 |
| 2020-07-30 | Test `Option::unwrap` in a const context | Dylan MacKenzie | -0/+34 |
| 2020-07-30 | Rollup merge of #74934 - nbdd0121:issue-73976, r=ecstatic-morse | Manish Goregaokar | -8/+8 |
| 2020-07-30 | Fix ui tests | Gary Guo | -8/+8 |
| 2020-07-29 | Test `{align,size}_of_val` in a const context | Dylan MacKenzie | -0/+79 |
| 2020-07-28 | update stderr for polymorphic ui test | Ashley Mannix | -4/+4 |
| 2020-07-28 | remove unstable const_type_id feature | Ashley Mannix | -2/+0 |
| 2020-07-28 | stabilize const_type_id feature | Ashley Mannix | -19/+0 |
| 2020-07-27 | mv std libs to library/ | mark | -38/+38 |
| 2020-07-27 | Rollup merge of #73858 - tspiteri:const-methods, r=oli-obk | Manish Goregaokar | -8/+0 |
| 2020-07-27 | Auto merge of #74775 - RalfJung:miri-alloc-ids, r=oli-obk | bors | -1/+19 |
| 2020-07-26 | check that even referencing a TLS static during CTFE fails | Ralf Jung | -1/+19 |
| 2020-07-26 | Auto merge of #74060 - kpp:remove_length_at_most_32, r=dtolnay | bors | -7/+16 |
| 2020-07-24 | Rollup merge of #74491 - xldenis:constant-binop-opt, r=oli-obk | Manish Goregaokar | -3/+4 |
| 2020-07-22 | Optimize away BitAnd and BitOr when possible | Xavier Denis | -3/+4 |
| 2020-07-21 | Expand test to cover type_name and monomorphic use | Gary Guo | -15/+77 |
| 2020-07-19 | Guard against non-monomorphized type_id intrinsic call | Gary Guo | -0/+40 |
| 2020-07-18 | Rollup merge of #74459 - canova:const-unreachable-unchecked, r=oli-obk | Manish Goregaokar | -0/+81 |
| 2020-07-18 | Update UB test to fail during build with contant errors | Nazım Can Altınova | -5/+34 |
| 2020-07-17 | Rollup merge of #73930 - a1phyr:feature_const_option, r=dtolnay | Manish Goregaokar | -0/+14 |
| 2020-07-17 | Add a test for const unsafe_unreachable that triggers UB | Nazım Can Altınova | -0/+35 |
| 2020-07-17 | Add a passing test for const unsafe_unreachable | Nazım Can Altınova | -0/+17 |
| 2020-07-15 | Constify most non-trait `Duration` methods as described in #72440 | marmeladema | -0/+57 |
| 2020-07-14 | Remove `Sized` `on_unimplemented` note | Esteban Küber | -4/+0 |
| 2020-07-11 | Rollup merge of #72920 - oli-obk:const_transmute, r=RalfJung | Manish Goregaokar | -72/+63 |
| 2020-07-11 | Stabilize `transmute` in constants and statics but not const fn | Oliver Scherer | -72/+63 |
| 2020-07-10 | Rollup merge of #73989 - RalfJung:ub-enum-test, r=oli-obk | Manish Goregaokar | -8/+9 |
| 2020-07-10 | Rollup merge of #73887 - DutchGhost:master, r=oli-obk | Manish Goregaokar | -2/+0 |
| 2020-07-10 | Rollup merge of #73862 - oli-obk:const_array_to_slice, r=RalfJung | Manish Goregaokar | -29/+22 |
| 2020-07-05 | Remove the usage of the LengthAtMost32 trait | Roman Proskuryakov | -7/+16 |
| 2020-07-05 | const validation: add test for uninit bool | Ralf Jung | -2/+13 |
| 2020-07-05 | catch errors more locally around read_discriminant | Ralf Jung | -3/+3 |
| 2020-07-03 | adjust ub-enum test to be endianess-independent | Ralf Jung | -8/+9 |
| 2020-07-01 | Add feature const_option | Benoît du Garreau | -0/+14 |
| 2020-06-30 | Bless failing tests | LeSeulArtichaut | -97/+99 |
| 2020-06-30 | stabilize const mem::forget | Dodo | -2/+0 |
| 2020-06-30 | Stabilize casts and coercions to `&[T]` in const fn | Oliver Scherer | -29/+22 |
| 2020-06-29 | stabilize const_ascii_ctype_on_intrinsics | Trevor Spiteri | -2/+0 |
| 2020-06-29 | stabilize const_int_sign | Trevor Spiteri | -2/+0 |
| 2020-06-29 | stabilize const_saturating_int_methods | Trevor Spiteri | -2/+0 |
| 2020-06-29 | stabilize const_nonzero_int_methods | Trevor Spiteri | -2/+0 |
| 2020-06-28 | Update tests | Dylan MacKenzie | -314/+40 |
| 2020-06-28 | Update tests | Dylan MacKenzie | -1022/+178 |
| 2020-06-26 | Show the values and computation that would overflow a const evaluation or pro... | Oliver Scherer | -95/+95 |
| 2020-06-24 | Fix tests | Nathan Corbyn | -0/+1 |
| 2020-06-24 | Implement intrinsic | Nathan Corbyn | -0/+46 |
| 2020-06-23 | Rollup merge of #73515 - christianpoveda:livedrop-diagnostics, r=oli-obk | Manish Goregaokar | -8/+77 |
| 2020-06-23 | Rollup merge of #73398 - oli-obk:const_raw_ptr_cmp, r=varkor,RalfJung,nagisa | Manish Goregaokar | -50/+71 |
| 2020-06-22 | Revert "Rollup merge of #72389 - Aaron1011:feature/move-fn-self-msg, r=nikoma... | Aaron Hill | -5/+4 |