| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-07-24 | Merge `rustc_allocator` into `libsyntax_ext` | Vadim Petrochenkov | -44/+0 | |
| 2019-06-24 | Enable internal lints in bootstrap | flip1995 | -1/+0 | |
| 2019-06-11 | Add deny(unused_lifetimes) to all the crates that have deny(internal). | Eduard-Mihai Burtescu | -0/+1 | |
| 2019-04-17 | Deny `internal` in stage0 | Mateusz Mikuła | -1/+1 | |
| 2019-04-03 | Deny internal lints on non conflicting crates | flip1995 | -0/+1 | |
| - libarena - librustc_allocator - librustc_borrowck - librustc_codegen_ssa - librustc_codegen_utils - librustc_driver - librustc_errors - librustc_incremental - librustc_metadata - librustc_passes - librustc_privacy - librustc_resolve - librustc_save_analysis - librustc_target - librustc_traits - libsyntax - libsyntax_ext - libsyntax_pos | ||||
| 2019-02-10 | Revert removed #![feature(nll)] | Taiki Endo | -0/+1 | |
| 2019-02-06 | librustc_allocator => 2018 | Taiki Endo | -10/+1 | |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 | |
| 2018-09-27 | Bump to 1.31.0 and bootstrap from 1.30 beta | Josh Stone | -1/+1 | |
| 2018-09-11 | stabalize infer outlives requirements (RFC 2093). | toidiu | -1/+0 | |
| Co-authored-by: nikomatsakis | ||||
| 2018-08-24 | check that adding infer-outlives requirement to all crates works | Niko Matsakis | -0/+1 | |
| 2018-08-23 | Use optimized SmallVec implementation | Igor Gutorov | -0/+2 | |
| 2018-08-13 | Move SmallVec and ThinVec out of libsyntax | ljedrz | -0/+1 | |
| 2018-08-09 | [nll] librustc_allocator: enable feature(nll) for bootstrap | memoryruins | -0/+1 | |
| 2018-07-25 | Deny bare_trait_objects globally | Tatsuyuki Ishi | -1/+0 | |
| 2018-07-11 | Deny bare trait objects in in src/librustc_allocator | ljedrz | -0/+1 | |
| 2018-06-24 | Prohibit global_allocator in submodules for now | Mark Mansi | -0/+1 | |
| - we need to figure out hygiene first - change the test to check that the prohibition works with a good error msg - leaves some comments and debugging code - leaves some of our supposed fixes | ||||
| 2018-04-26 | rustc_target: move in syntax::abi and flip dependency. | Irina Popa | -0/+1 | |
| 2018-04-22 | Remove unused AllocatorTy::Bang | Steven Fackler | -1/+0 | |
| 2018-04-22 | Replace GlobalAlloc::oom with a lang item | Steven Fackler | -5/+0 | |
| 2018-04-12 | Restore Global.oom() functionality | Simon Sapin | -0/+6 | |
| … now that #[global_allocator] does not define a symbol for it | ||||
| 2018-04-12 | Use the GlobalAlloc trait for #[global_allocator] | Simon Sapin | -37/+2 | |
| 2018-04-08 | Move deny(warnings) into rustbuild | Mark Simulacrum | -2/+0 | |
| This permits easier iteration without having to worry about warnings being denied. Fixes #49517 | ||||
| 2017-08-19 | rustc: Remove some dead code | Vadim Petrochenkov | -11/+2 | |
| 2017-07-05 | rustc: Implement the #[global_allocator] attribute | Alex Crichton | -0/+101 | |
| 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 | ||||
