| Age | Commit message (Expand) | Author | Lines |
| 2022-01-14 | Do not fail evaluation in const blocks | Michael Goulet | -0/+38 |
| 2021-12-31 | Extend check for UnsafeCell in consts to cover unions | Tomasz Miąsko | -0/+92 |
| 2021-12-24 | Auto merge of #91342 - RalfJung:fn-abi, r=eddyb,oli-obk | bors | -2/+2 |
| 2021-12-21 | Use panic() instead of panic!() in some places in core. | Mara Bos | -10/+10 |
| 2021-12-20 | compare calling convention instead of call ABI | Ralf Jung | -2/+2 |
| 2021-12-19 | Rollup merge of #91791 - terrarier2111:fix-float-ice, r=nagisa | Matthias Krüger | -0/+29 |
| 2021-12-19 | Fix an ICE when lowering a float with missing exponent magnitude | threadexception | -0/+29 |
| 2021-12-18 | Rollup merge of #91910 - tmiasko:miri-extern-type, r=RalfJung | Matthias Krüger | -0/+58 |
| 2021-12-16 | Auto merge of #89836 - pierwill:fix-85142-crate-hash, r=wesleywiser | bors | -2/+2 |
| 2021-12-15 | miri: lift restriction on extern types being the only field in a struct | Tomasz Miąsko | -0/+58 |
| 2021-12-14 | Auto merge of #91728 - Amanieu:stable_asm, r=joshtriplett | bors | -6/+8 |
| 2021-12-13 | Include rustc version in `rustc_span::StableCrateId` | pierwill | -2/+2 |
| 2021-12-12 | Stabilize asm! and global_asm! | Amanieu d'Antras | -6/+8 |
| 2021-12-12 | Revert "Auto merge of #89450 - usbalbin:const_try_revert, r=oli-obk" | Deadbeef | -9/+23 |
| 2021-12-11 | Tweak assoc type obligation spans | Esteban Kuber | -3/+6 |
| 2021-12-08 | Rollup merge of #91551 - b-naber:const-eval-normalization-ice, r=oli-obk | Matthias Krüger | -1/+1 |
| 2021-12-08 | Rollup merge of #91272 - FabianWolff:issue-90870-const-fn-eq, r=wesleywiser | Matthias Krüger | -0/+104 |
| 2021-12-05 | add test and bless existing ones | b-naber | -1/+1 |
| 2021-12-02 | Rollup merge of #91410 - ecstatic-morse:const-precise-live-drops-take-2, r=ol... | Matthias Krüger | -0/+26 |
| 2021-12-01 | Add regression test for #90770 | Dylan MacKenzie | -0/+26 |
| 2021-11-30 | Rollup merge of #91323 - RalfJung:assert-type, r=oli-obk | Yuki Okushi | -28/+61 |
| 2021-11-29 | CTFE: support assert_zero_valid and assert_uninit_valid | Ralf Jung | -28/+61 |
| 2021-11-28 | Rollup merge of #90131 - camsteffen:fmt-args-span-fix, r=cjgillot | Matthias Krüger | -0/+3 |
| 2021-11-26 | Print a suggestion when comparing references to primitive types in constant f... | Fabian Wolff | -0/+104 |
| 2021-11-26 | Perform Sync check on static items in wf-check instead of during const checks | Oli Scherer | -14/+14 |
| 2021-11-25 | Rollup merge of #91185 - camelid:rm-force-overflow-checks, r=wesleywiser | Matthias Krüger | -1/+1 |
| 2021-11-25 | Rollup merge of #91111 - cjgillot:hir-no-lower-attrs, r=michaelwoerister | Matthias Krüger | -19/+1 |
| 2021-11-25 | Do not visit attributes in `LateResolutionVisitor`. | Camille GILLOT | -19/+1 |
| 2021-11-24 | Remove `-Z force-overflow-checks` | Noah Lev | -1/+1 |
| 2021-11-22 | `#![feature(inline_const)]` is no longer incomplete | Gary Guo | -2/+1 |
| 2021-11-20 | Rollup merge of #90930 - Nilstrieb:fix-non-const-value-ice, r=estebank | Matthias Krüger | -0/+101 |
| 2021-11-20 | Rollup merge of #90999 - RalfJung:miri_simd, r=oli-obk | Matthias Krüger | -6/+16 |
| 2021-11-18 | CTFE SIMD: also test 1-element array | Ralf Jung | -1/+10 |
| 2021-11-18 | fix CTFE/Miri simd_insert/extract on array-style repr(simd) types | Ralf Jung | -6/+7 |
| 2021-11-17 | Add a test with a leading newline for ICE #90878 | Nilstrieb | -0/+17 |
| 2021-11-17 | Rollup merge of #90687 - jhpratt:const_panic, r=oli-obk | Matthias Krüger | -0/+46 |
| 2021-11-16 | Rollup merge of #90910 - RalfJung:const-discriminant-empty-enum, r=petrochenkov | Yuki Okushi | -0/+7 |
| 2021-11-16 | Rollup merge of #90892 - RalfJung:miri-partial-ptr-copy, r=oli-obk | Yuki Okushi | -0/+38 |
| 2021-11-15 | Fix `non-constant value` ICE (#90878) | Nilstrieb | -0/+84 |
| 2021-11-14 | expand comment | Ralf Jung | -0/+1 |
| 2021-11-14 | fix getting the discriminant of a zero-variant enum | Ralf Jung | -0/+6 |
| 2021-11-14 | Move some tests to more reasonable directories | Caio | -0/+25 |
| 2021-11-13 | fix ICE on Miri/CTFE copy of half a pointer | Ralf Jung | -0/+38 |
| 2021-11-13 | Auto merge of #89551 - jhpratt:stabilize-const_raw_ptr_deref, r=oli-obk | bors | -155/+73 |
| 2021-11-08 | Permit const assertions in stdlib | Jacob Pratt | -0/+46 |
| 2021-11-08 | Auto merge of #89488 - c410-f3r:testsssssss, r=petrochenkov | bors | -0/+94 |
| 2021-11-07 | Auto merge of #90348 - Amanieu:asm_feature_gates, r=joshtriplett | bors | -1/+3 |
| 2021-11-07 | Restrict tests that use needs-asm-support to non-experimental | Amanieu d'Antras | -1/+3 |
| 2021-11-06 | Stabilize `const_raw_ptr_deref` for `*const T` | Jacob Pratt | -155/+73 |
| 2021-11-06 | Move some tests to more reasonable directories | Caio | -0/+94 |