about summary refs log tree commit diff
path: root/src/librustc_data_structures/base_n.rs
AgeCommit message (Collapse)AuthorLines
2020-08-30mv compiler to compiler/mark-42/+0
2019-12-22Format the worldMark Rousskov-1/+0
2019-08-02librustc_data_structures: Unconfigure tests during normal buildVadim Petrochenkov-21/+3
2019-02-10rustc: doc commentsAlexander Regueiro-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-08-09A few cleanups for rustc_data_structuresljedrz-2/+3
2018-01-08Shorten names of some compiler generated artifacts.Michael Woerister-9/+13
2017-03-27Fix various useless derefs and slicingsOliver Schneider-1/+1
2016-12-12Do not generate '@' character in symbol names.Vadzim Dambrouski-0/+2
MSP430 assembler does not like '@' character in symbol names, so we should only use alphanumerics when we generate a new name. Fixes #38116
2016-11-13Make names of types used in LLVM IR stable.Michael Woerister-0/+64
Before this PR, type names could depend on the cratenum being used for a given crate and also on the source location of closures. Both are undesirable for incremental compilation where we cache LLVM IR and don't want it to depend on formatting or in which order crates are loaded.