summary refs log tree commit diff
AgeCommit message (Collapse)AuthorLines
2016-08-15Merge pull request #35664 from arielb1/split-literals 1.11.0Alex Crichton-1/+85
prohibit splitting literal patterns
2016-08-14prohibit splitting literal patternsAriel Ben-Yehuda-1/+85
Before PR #32202, check_match tended to report bogus errors or ICE when encountering a pattern that split a literal, e.g. ```Rust match foo { "bar" => {}, &_ => {} } ``` That PR fixed these issues, but trans::_match generates bad code when it encounters these matches. MIR trans has that fixed, but it is waiting for 6 weeks in beta. Report an error when encountering these instead. Fixes issue #35044.
2016-08-08Merge pull request #35527 from alexcrichton/beta-nextBrian Anderson-53/+123
Backport #34986 to beta
2016-08-08move `during_closure_kind_inference` flag to mcNiko Matsakis-22/+37
We used to put the flag on the `InferCtxt`.
2016-08-08Avoid writing a temporary closure kindNiko Matsakis-50/+105
We used to write a temporary closure kind into the inference table, but this could lead to obligations being incorrectled resolved before inference had completed. This result could then be cached, leading to further trouble. This patch avoids writing any closure kind until the computation is complete. Fixes #34349.
2016-08-02Merge pull request #35172 from alexcrichton/beta-nextBrian Anderson-13/+92
Backporting PRs to beta
2016-08-01Bump beta version to .3Alex Crichton-1/+1
2016-08-01Add regression test.Jeffrey Seyfried-0/+23
2016-08-01Avoid processing `feature`s on unconfigured crates.Jeffrey Seyfried-1/+1
2016-08-01Add regression testJeffrey Seyfried-1/+7
2016-08-01Make `ext::base::expr_to_string` work correctly with `include!` macro ↵Jeffrey Seyfried-0/+6
invocations
2016-08-01Just pass in NodeId to FunctionContext::new instead of looking it up.Luqman Aden-10/+54
2016-07-27Merge pull request #35071 from alexcrichton/beta-nextBrian Anderson-3/+3
Backport #34841 to beta
2016-07-27mk: Don't pass -msoft-float on mips-gnuAlex Crichton-3/+3
Soon the LLVM upgrade (#34743) will require an updated CMake installation, and the easiest way to do this was to upgrade the Ubuntu version of the bots to 16.04. This in turn brings in a new MIPS compiler on the linux-cross builder, which is now from the "official" ubuntu repositories. Unfortunately these new compilers don't support compiling with the `-msoft-float` flag like we're currently passing, causing compiles to fail. This commit removes these flags as it's not clear *why* they're being passed, as the mipsel targets also don't have it. At least if it's not supported by a debian default compiler, perhaps it's not too relevant to support?
2016-07-26Update the beta to .2Alex Crichton-1/+1
2016-07-26Merge pull request #35055 from alexcrichton/beta-nextBrian Anderson-1/+74
Backport #34805 to beta
2016-07-26tyencode: Make sure that projection bounds are handled in stable order.Michael Woerister-1/+74
2016-07-21Merge pull request #34964 from petrochenkov/betaAlex Crichton-1/+51
Backport fix for #34209 to beta
2016-07-21Backport fix for #34209 to betaVadim Petrochenkov-1/+51
2016-07-19Merge pull request #34927 from alexcrichton/beta-nextBrian Anderson-0/+0
Backport update of jemalloc to beta
2016-07-19Update jemalloc to include a fix for startup issues on OSX 10.12Mike Hommey-0/+0
This fixes jemalloc/jemalloc#140 in the version used by the rust compiler. Fixes #34674
2016-07-06Bump back the Cargo dateAlex Crichton-1/+1
This was moved forward by accident
2016-07-05Try to fix a test on betaAlex Crichton-1/+0
2016-07-05Use lazy range in gdb pretty printersLoïc Damien-2/+6
2016-07-05Bootstrap from the 1.10.0 releaseAlex Crichton-3/+3
2016-07-05Auto merge of #34647 - TimNN:compiler-rt-ios-workaround, r=alexcrichtonbors-0/+0
Update compiler-rt with iOS linking warnings workaround Closes #34617. r? @alexcrichton
2016-07-04Auto merge of #34594 - willcrichton:master, r=nrcbors-2/+117
Move LLVM cleanup so modules are accessible during `after_llvm` phase Fix for #34432. Also added a new phase controller `after_compilation_done` that gets called at the very end (i.e. after linking) at the suggestion of @nrc. The added test will segfault if the modules get deallocated too early, so it ensures the LLVM is not prematurely cleaned up. r? @nrc
2016-07-04Auto merge of #34646 - michaelwoerister:warn-blacklisted-lldb, r=alexcrichtonbors-0/+11
Make rust-lldb warn about unsupported versions of LLDB r? @alexcrichton
2016-07-04Make rust-lldb warn about unsupported versions of LLDBMichael Woerister-0/+11
2016-07-04Auto merge of #34639 - dzamlo:master, r=michaelwoeristerbors-7/+79
Use lazy iterator in vec/slice gdb pretty printers
2016-07-04Use lazy iterator in vec/slice gdb pretty printersLoïc Damien-7/+79
2016-07-04update compiler-rt with iOS linking warnings workaroundTim Neumann-0/+0
closes #34617.
2016-07-04Auto merge of #34602 - Xmasreturns:patch-4, r=steveklabnikbors-0/+6
Update glossary.md Added a brief description of Combinators
2016-07-04Auto merge of #34590 - pwlandoll:master, r=apasel422bors-2/+1
Issue #34076: Removing reference to removed path.prefix() function In the documentation for `std::path::Path`, there is a [reference](https://doc.rust-lang.org/std/path/struct.Path.html#method.is_absolute) to the `path.prefix()` function which has since been removed. The offending reference is now also removed. First pull request, feedback welcome! r? @steveklabnik
2016-07-04Auto merge of #34638 - zackmdavis:if_let_over_none_empty_block_arm, r=jseyfriedbors-349/+215
prefer `if let` to match with `None => {}` arm in some places This is a spiritual succesor to #34268 / 8531d581, in which we replaced a number of matches of None to the unit value with `if let` conditionals where it was judged that this made for clearer/simpler code (as would be recommended by Manishearth/rust-clippy's `single_match` lint). The same rationale applies to matches of None to the empty block. ---- r? @jseyfried
2016-07-04Renamed phase to compilation_doneWill Crichton-5/+5
2016-07-04Added new compilation phase and testWill Crichton-0/+105
2016-07-04Moved LLVM cleanup to after `after_llvm` phaseWill Crichton-2/+12
2016-07-03Auto merge of #34550 - cynicaldevil:master, r=Manishearthbors-1/+8
Added a pretty printer for &mut slices Fixes #30232 I have added a test which checks for correctness in gdb, but I need some help to do the same for lldb. r? @Manishearth
2016-07-03Auto merge of #34480 - jseyfried:remove_entry_points, r=nrcbors-81/+57
Remove redundant `CompileController` entry points Remove the `after_expand` and `after_write_deps` `CompileController` entry points. The only things that separate these entry points from `after_hir_lowering` are dep-info generation and HIR map construction, neither of which is computationally intensive or has the potential to error. r? @nrc
2016-07-03prefer `if let` to match with `None => {}` arm in some placesZack M. Davis-349/+215
This is a spiritual succesor to #34268/8531d581, in which we replaced a number of matches of None to the unit value with `if let` conditionals where it was judged that this made for clearer/simpler code (as would be recommended by Manishearth/rust-clippy's `single_match` lint). The same rationale applies to matches of None to the empty block.
2016-07-03Auto merge of #34530 - alexcrichton:stabilize-1.11, r=aturonbors-194/+507
std: Stabilize APIs for the 1.11.0 release Although the set of APIs being stabilized this release is relatively small, the trains keep going! Listed below are the APIs in the standard library which have either transitioned from unstable to stable or those from unstable to deprecated. Stable * `BTreeMap::{append, split_off}` * `BTreeSet::{append, split_off}` * `Cell::get_mut` * `RefCell::get_mut` * `BinaryHeap::append` * `{f32, f64}::{to_degrees, to_radians}` - libcore stabilizations mirroring past libstd stabilizations * `Iterator::sum` * `Iterator::product` Deprecated * `{f32, f64}::next_after` * `{f32, f64}::integer_decode` * `{f32, f64}::ldexp` * `{f32, f64}::frexp` * `num::One` * `num::Zero` Added APIs (all unstable) * `iter::Sum` * `iter::Product` * `iter::Step` - a few methods were added to accomodate deprecation of One/Zero Removed APIs * `From<Range<T>> for RangeInclusive<T>` - everything about `RangeInclusive` is unstable Closes #27739 Closes #27752 Closes #32526 Closes #33444 Closes #34152 cc #34529 (new tracking issue)
2016-07-04Added a pretty printer for &mut slicesNikhil Shagrithaya-1/+8
2016-07-03std: Stabilize APIs for the 1.11.0 releaseAlex Crichton-194/+507
Although the set of APIs being stabilized this release is relatively small, the trains keep going! Listed below are the APIs in the standard library which have either transitioned from unstable to stable or those from unstable to deprecated. Stable * `BTreeMap::{append, split_off}` * `BTreeSet::{append, split_off}` * `Cell::get_mut` * `RefCell::get_mut` * `BinaryHeap::append` * `{f32, f64}::{to_degrees, to_radians}` - libcore stabilizations mirroring past libstd stabilizations * `Iterator::sum` * `Iterator::product` Deprecated * `{f32, f64}::next_after` * `{f32, f64}::integer_decode` * `{f32, f64}::ldexp` * `{f32, f64}::frexp` * `num::One` * `num::Zero` Added APIs (all unstable) * `iter::Sum` * `iter::Product` * `iter::Step` - a few methods were added to accomodate deprecation of One/Zero Removed APIs * `From<Range<T>> for RangeInclusive<T>` - everything about `RangeInclusive` is unstable Closes #27739 Closes #27752 Closes #32526 Closes #33444 Closes #34152 cc #34529 (new tracking issue)
2016-07-03Auto merge of #34540 - jupp0r:patch-1, r=steveklabnikbors-1/+4
Improve code example for try! This change improves the code example for try!, avoiding to use try! in the example code that shows what code constructs try! can replace.
2016-07-03Auto merge of #34532 - jonmarkprice:master, r=steveklabnikbors-27/+33
Book: Small grammatical and stylistic edits to book I've been reading [the book](https://doc.rust-lang.org/book/) and noticed a few small grammatical and stylistic issues which I've rolled into this pull request. I'm not sure if I should do so many small, unrelated edits in a single pull request but it seems like a lot of overhead for each small edit. Maybe one commit per edit but one pull request per file/section? Feedback is very much appreciated as this is my first pull request ever! r? @steveklabnik rollup
2016-07-03Auto merge of #34504 - retep998:patch-1, r=alexcrichtonbors-5/+19
Instructions on how to build Rust with rustbuild This is a much simpler option for those on Windows who use msvc.
2016-07-03Auto merge of #34614 - cynicaldevil:build-time, r=alexcrichtonbors-0/+12
Build: Shows total time taken to build the compiler Fixes #34600 Prints the total time taken to build rustc by executing `src/bootstrap/bootstrap.py`; also includes time taken to download `stage0` compiler and deps. r? @alexcrichton
2016-07-02Auto merge of #34597 - CensoredUsername:bootstrap-fix, r=alexcrichtonbors-1/+1
Support more python 2.7 versions in bootstrap.py It seems python broke compatability between 2.7.9 and 2.7.12 as on the former a WindowsError was raised while on the latter a subprocess.CalledProcessError was raised while testing for the existence of uname. As a WindowsError being thrown obviously indicates we're running on windows, this should probably be accepted too.
2016-07-02Auto merge of #34591 - brson:relnotes, r=alexcrichtonbors-0/+312
Release notes for 1.10.0 [Rundered](https://github.com/brson/rust/tree/relnotes/RELEASES.md). To me highlights look like panic hooks, unix sockets, cargo, and usability improvements. f? @rust-lang/core @rust-lang/lang @rust-lang/compiler @rust-lang/tools @bstrie