| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-08-30 | mv compiler to compiler/ | mark | -93/+0 | |
| 2020-01-11 | use winapi for non-stdlib Windows bindings | Andy Russell | -22/+5 | |
| 2019-12-22 | Format the world | Mark Rousskov | -11/+16 | |
| 2019-06-17 | Make use of `ptr::null(_mut)` instead of casting zero | Lzu Tao | -1/+1 | |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 | |
| 2018-09-07 | Fix compiling some rustc crates to wasm | Alex Crichton | -1/+1 | |
| I was dabbling recently seeing what it would take to compile `rustfmt` to the `wasm32-unknown-unknown` target and it turns out not much effort is needed! Currently `rustfmt` depends on a few rustc crates published to crates.io, so this commit touches up those crates to compile for wasm themselves. Notably: * The `rustc_data_structures` crate's `flock` implementation is stubbed out to unconditionally return errors on unsupported platforms. * The `rustc_errors` crate is extended to not do any locking for all non-windows platforms. In both of these cases if we port the compiler to new platforms the functionality isn't critical but will be discovered over time as it comes up, so this hopefully doesn't make it too too hard to compile to new platforms! | ||||
| 2018-08-29 | Replace usages of 'bad_style' with 'nonstandard_style'. | Corey Farwell | -1/+1 | |
| `bad_style` is being deprecated in favor of `nonstandard_style`: - https://github.com/rust-lang/rust/issues/41646 | ||||
| 2018-07-14 | Deny bare trait objects in src/librustc_errors | ljedrz | -2/+2 | |
| Enforce `#![deny(bare_trait_objects)]` in `src/librustc_errors`. | ||||
| 2016-10-18 | run rustfmt on librustc_errors folder | Srinivas Reddy Thatiparthy | -6/+9 | |
| 2016-08-25 | prevent error message interleaving on win/unix | Jonathan Turner | -0/+112 | |
