| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-07-27 | tests: Move run-pass tests without naming conflicts to ui | Vadim Petrochenkov | -46/+0 | |
| 2019-01-26 | Replace deprecated ATOMIC_INIT consts | Mark Rousskov | -2/+2 | |
| 2018-12-25 | Remove licenses | Mark Rousskov | -30/+0 | |
| 2018-09-26 | Migrate `src/test/ui/run-pass/*` back to `src/test/run-pass/`. | Felix S. Klock II | -0/+76 | |
| Fix #54047 | ||||
| 2018-09-06 | Migrated remaining `src/test/run-pass/` subdirectories to ↵ | Felix S. Klock II | -76/+0 | |
| `src/test/ui/run-pass/`. | ||||
| 2018-08-05 | Fix test/run-pass | varkor | -1/+1 | |
| 2018-06-11 | Remove some '#[feature]' attributes for stabilized features | Simon Sapin | -1/+0 | |
| 2018-06-11 | Remove alloc::Opaque and use *mut u8 as pointer type for GlobalAlloc | Mike Hommey | -3/+3 | |
| 2018-04-14 | Replace remaining uses of deprecated std::heap with std::alloc | Mike Hommey | -1/+1 | |
| 2018-04-12 | Rename alloc::Void to alloc::Opaque | Simon Sapin | -3/+3 | |
| 2018-04-12 | Use the GlobalAlloc trait for #[global_allocator] | Simon Sapin | -4/+4 | |
| 2017-07-05 | rustc: Implement the #[global_allocator] attribute | Alex Crichton | -0/+77 | |
| This PR is an implementation of [RFC 1974] which specifies a new method of defining a global allocator for a program. This obsoletes the old `#![allocator]` attribute and also removes support for it. [RFC 1974]: https://github.com/rust-lang/rfcs/pull/197 The new `#[global_allocator]` attribute solves many issues encountered with the `#![allocator]` attribute such as composition and restrictions on the crate graph itself. The compiler now has much more control over the ABI of the allocator and how it's implemented, allowing much more freedom in terms of how this feature is implemented. cc #27389 | ||||
