| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-07-22 | Rename `tests/codegen` into `tests/codegen-llvm` | Guillaume Gomez | -28/+0 | |
| 2025-01-26 | reduce `Box::default` stack copies in debug mode | Joshua Wong | -1/+4 | |
| The `Box::new(T::default())` implementation of `Box::default` only had two stack copies in debug mode, compared to the current version, which has four. By avoiding creating any `MaybeUninit<T>`'s and just writing `T` directly to the `Box` pointer, the stack usage in debug mode remains the same as the old version. | ||||
| 2025-01-26 | add test for Box::default's stack usage in debug mode | Joshua Wong | -0/+25 | |
