about summary refs log tree commit diff
path: root/src/librustc_apfloat/ieee.rs
AgeCommit message (Collapse)AuthorLines
2020-08-30mv compiler to compiler/mark-2752/+0
2020-04-19Dogfood more or_patterns in the compilerJosh Stone-4/+3
2019-12-22Format the worldMark Rousskov-128/+104
2019-10-01Fix clippy warningsYuki Okushi-2/+2
2019-08-28rustc_apfloat: make the crate #![no_std] explicitly.Eduard-Mihai Burtescu-8/+8
2019-02-10rustc: doc commentsAlexander Regueiro-10/+10
2019-02-07librustc_apfloat => 2018Taiki Endo-4/+4
2019-01-03Fix repeated word typosWiktor Kuchta-2/+2
Found with `git grep -P '\b([a-z]+)\s+\1\b'`
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-07Various minor/cosmetic improvements to codeAlexander Regueiro-2/+2
2018-12-04Replace usages of `..i + 1` ranges with `..=i`.Corey Farwell-2/+2
2018-11-11Fix typos.Bruce Mitchener-2/+2
2018-11-09Use `SmallVec` to avoid allocations in `from_decimal_string`.Nicholas Nethercote-6/+7
This reduces the number of allocations in a "check clean" build of `tuple-stress` by 14%, reducing instruction counts by 0.6%.
2018-08-15Two small improvementsAndre Bogus-14/+4
In `librustc_apfloat/ieee.rs`, use the iterator.[r]find methods to simplify the code. In `libserialize/json.rs`, make use of the fact that `Vec.last` on an empty `Vec` returns `None` to simplify the code to a single match.
2018-08-11A few cleanups for fmt_macros, graphviz, apfloat, target, serialize and termljedrz-47/+44
2018-06-26migrate codebase to `..=` inclusive range patternsZack M. Davis-2/+2
These were stabilized in March 2018's #47813, and are the Preferred Way to Do It going forward (q.v. #51043).
2018-01-18in which the unused-parens lint comes to cover function and method argsZack M. Davis-1/+1
Resolves #46137.
2018-01-01Fix docs for future pulldown migrationMalo Jaffré-3/+3
2017-08-23Speed up APFloat division by using short division for small divisors.Eduard-Mihai Burtescu-30/+96
2017-08-02rustc_apfloat: complete the IEEE & PPC implementations.Eduard-Mihai Burtescu-55/+2523
2017-08-02rustc_apfloat: stub IEEE & PPC implementations.Eduard-Mihai Burtescu-0/+265