| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2024-01-27 | Update tests. | Markus Reiter | -1/+1 | |
| 2024-01-05 | remove duplicate test | Ralf Jung | -23/+0 | |
| 2023-11-29 | Auto merge of #114841 - bvanjoi:fix-114814, r=cuviper | bors | -0/+77 | |
| add track_caller for arith ops Fixes #114814 `#[track_caller]` is works, r? `@scottmcm` | ||||
| 2023-11-27 | Auto merge of #117947 - Dirbaio:drop-llvm-15, r=cuviper | bors | -1/+0 | |
| Update the minimum external LLVM to 16. With this change, we'll have stable support for LLVM 16 and 17. For reference, the previous increase to LLVM 15 was #114148 [Relevant zulip discussion](https://rust-lang.zulipchat.com/#narrow/stream/131828-t-compiler/topic/riscv.20forced-atomics) | ||||
| 2023-11-24 | Show number in error message even for one error | Nilstrieb | -10/+10 | |
| Co-authored-by: Adrian <adrian.iosdev@gmail.com> | ||||
| 2023-11-24 | add track_caller for arith ops | bohan | -0/+77 | |
| 2023-11-21 | Update the minimum external LLVM to 16. | Dario Nieuwenhuis | -1/+0 | |
| 2023-11-07 | manually bless a wasm-only test | Ralf Jung | -0/+6 | |
| 2023-07-29 | Change default panic handler message format. | Mara Bos | -7/+12 | |
| 2023-07-26 | Add test case for #109567 | yukang | -0/+15 | |
| 2023-06-27 | Don't sort strings right after we just sorted by types | Michael Goulet | -41/+41 | |
| 2023-06-01 | Use translatable diagnostics in `rustc_const_eval` | Deadbeef | -18/+18 | |
| 2023-05-11 | Add support for `cfg(overflow_checks)` | AngelicosPhosphoros | -0/+38 | |
| This PR adds support for detecting if overflow checks are enabled in similar fashion as debug_assertions are detected. Possible use-case of this, for example, if we want to use checked integer casts in builds with overflow checks, e.g. ```rust pub fn cast(val: usize)->u16 { if cfg!(overflow_checks) { val.try_into().unwrap() } else{ vas as _ } } ``` Resolves #91130. Tracking issue: #111466. | ||||
| 2023-04-20 | Implement `Neg` for signed non-zero integers. | John Millikin | -0/+12 | |
| Negating a non-zero integer currently requires unpacking to a primitive and re-wrapping. Since negation of non-zero signed integers always produces a non-zero result, it is safe to implement `Neg` for `NonZeroI{N}`. The new `impl` is marked as stable because trait implementations for two stable types can't be marked unstable. | ||||
| 2023-04-15 | Add some reasons why tests are ignored. | Eric Huss | -1/+1 | |
| 2023-03-02 | Auto merge of #107879 - icedrocket:update-llvm, r=cuviper | bors | -0/+17 | |
| Update LLVM submodule Fixes #105626 | ||||
| 2023-02-23 | Add regression test for #105626 | icedrocket | -0/+17 | |
| 2023-01-18 | Support `true` and `false` as boolean flag params | Nilstrieb | -1/+1 | |
| Implements MCP 577. | ||||
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+3352 | |
