| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-08-14 | Moved compile-fail tests to ui tests. | David Wood | -132/+0 | |
| 2018-06-11 | Remove some '#[feature]' attributes for stabilized features | Simon Sapin | -10/+0 | |
| 2018-04-22 | Remove Alloc::oom | Steven Fackler | -1/+0 | |
| 2018-04-14 | Replace remaining uses of deprecated std::heap with std::alloc | Mike Hommey | -4/+4 | |
| 2018-04-12 | Restore Global.oom() functionality | Simon Sapin | -0/+1 | |
| … now that #[global_allocator] does not define a symbol for it | ||||
| 2018-04-12 | Use the GlobalAlloc trait for #[global_allocator] | Simon Sapin | -10/+4 | |
| 2017-07-05 | rustc: Implement the #[global_allocator] attribute | Alex Crichton | -0/+148 | |
| 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 | ||||
