| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2024-04-21 | Peek for panic message in test output | Lukas Wirth | -1/+4 | |
| 2024-04-18 | Fix #[rustc_const_panic_str] functions not actually being hooked | Lukas Wirth | -1/+2 | |
| 2024-04-18 | Fixup some issues with minicore | Lukas Wirth | -8/+30 | |
| 2024-04-18 | Fix missing function body in minicore | Lukas Wirth | -2/+3 | |
| 2024-04-18 | Handle panicking like rustc CTFE does | Nilstrieb | -0/+2811 | |
| Instead of using `core::fmt::format` to format panic messages, which may in turn panic too and cause recursive panics and other messy things, redirect `panic_fmt` to `const_panic_fmt` like CTFE, which in turn goes to `panic_display` and does the things normally. See the tests for the full call stack. | ||||
