-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rollup of 14 pull requests #33440
Rollup of 14 pull requests #33440
Commits on Apr 28, 2016
-
Configuration menu - View commit details
-
Copy full SHA for f7e1421 - Browse repository at this point
Copy the full SHA f7e1421View commit details
Commits on Apr 30, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 27c01cb - Browse repository at this point
Copy the full SHA 27c01cbView commit details
Commits on May 1, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 47d9f49 - Browse repository at this point
Copy the full SHA 47d9f49View commit details -
dep_graph: avoid panicking in thread when channel closed
On my system, when the processor is already loaded, and I try to run the test suite, e.g. compile-fail/dep-graph-assoc-type-trans.rs fails because of undecodable JSON. Running the compiler manually, I can see that the dep graph thread panics (and puts non-JSON on stderr) while `send`ing on `swap_out`, presumably because the other end has already quit. I think that in this case, we can just gracefully exit the thread.
Configuration menu - View commit details
-
Copy full SHA for e3f1312 - Browse repository at this point
Copy the full SHA e3f1312View commit details
Commits on May 2, 2016
-
std::thread docs: spawn() returns not a Thread anymore
Also move the "Thread type" section down a bit, since it is not so important anymore. Fixes: rust-lang#33321
Configuration menu - View commit details
-
Copy full SHA for eba43fb - Browse repository at this point
Copy the full SHA eba43fbView commit details -
parser: do not try to continue with
unsafe
on foreign fnsThe changed line makes it look like `unsafe` is allowed, but the first statement of `parse_item_foreign_fn` is: `self.expect_keyword(keywords::Fn)?;` So we get the strange "expected one of `fn`, `pub`, `static`, or `unsafe`, found `unsafe`". Fixes: rust-lang#27361
Configuration menu - View commit details
-
Copy full SHA for b75f81c - Browse repository at this point
Copy the full SHA b75f81cView commit details -
typeck: if a private field exists, also check for a public method
For example, `Vec::len` is both a field and a method, and usually encountering `vec.len` just means that the parens were forgotten. Fixes: rust-lang#26472
Configuration menu - View commit details
-
Copy full SHA for fcebf52 - Browse repository at this point
Copy the full SHA fcebf52View commit details
Commits on May 4, 2016
-
Configuration menu - View commit details
-
Copy full SHA for a11ddb3 - Browse repository at this point
Copy the full SHA a11ddb3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ca3120 - Browse repository at this point
Copy the full SHA 2ca3120View commit details -
Configuration menu - View commit details
-
Copy full SHA for 16219de - Browse repository at this point
Copy the full SHA 16219deView commit details
Commits on May 5, 2016
-
Configuration menu - View commit details
-
Copy full SHA for d1c487e - Browse repository at this point
Copy the full SHA d1c487eView commit details -
Configuration menu - View commit details
-
Copy full SHA for a22ca28 - Browse repository at this point
Copy the full SHA a22ca28View commit details -
mk: Fix building with --enable-ccache
We will no longer use `ccache` in the makefiles for our local dependencies like miniz, but they're so small anyway it doesn't really matter. Closes rust-lang#33285
Configuration menu - View commit details
-
Copy full SHA for 39eec80 - Browse repository at this point
Copy the full SHA 39eec80View commit details -
doc: Update reference with better description of target_env
The definition of this value recently changed slightly. It no longer corresponds directly to the target triple. Also shuffled things around to make the order of cfg descriptions more logical and added text related them to the target triple. cc rust-lang#33403
Configuration menu - View commit details
-
Copy full SHA for 2912bfb - Browse repository at this point
Copy the full SHA 2912bfbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 26eb2be - Browse repository at this point
Copy the full SHA 26eb2beView commit details -
Rollup merge of rust-lang#33256 - pnkfelix:add-rustc-specific-tags-fi…
…les, r=nikomatsakis Add `TAGS.rustc.emacs`/`TAGS.rustc.vi` make targets Add `TAGS.rustc.emacs`/`TAGS.rustc.vi` make targets, (re-)including rustc source.
Configuration menu - View commit details
-
Copy full SHA for 1d18acc - Browse repository at this point
Copy the full SHA 1d18accView commit details -
Rollup merge of rust-lang#33283 - GuillaumeGomez:process_doc, r=steve…
…klabnik Add process types documentation Part of rust-lang#29370. r? @steveklabnik
Configuration menu - View commit details
-
Copy full SHA for 5df157b - Browse repository at this point
Copy the full SHA 5df157bView commit details -
Rollup merge of rust-lang#33313 - birkenfeld:depgraph-panic, r=nikoma…
…tsakis dep_graph: avoid panicking in thread when channel closed On my system, when the processor is already loaded, and I try to run the test suite, e.g. compile-fail/dep-graph-assoc-type-trans.rs fails because of undecodable JSON. Running the compiler manually, I can see that the dep graph thread panics (and puts non-JSON on stderr) while `send`ing on `swap_out`, presumably because the other end has already quit. I think that in this case, we can just gracefully exit the thread.
Configuration menu - View commit details
-
Copy full SHA for 10c34fa - Browse repository at this point
Copy the full SHA 10c34faView commit details -
Rollup merge of rust-lang#33314 - alexcrichton:fix-enable-ccache, r=p…
…nkfelix mk: Fix building with --enable-ccache We will no longer use `ccache` in the makefiles for our local dependencies like miniz, but they're so small anyway it doesn't really matter. Closes rust-lang#33285
Configuration menu - View commit details
-
Copy full SHA for e44162f - Browse repository at this point
Copy the full SHA e44162fView commit details -
Rollup merge of rust-lang#33326 - birkenfeld:issue-33321, r=Guillaume…
…Gomez std::thread docs: spawn() does not return a Thread anymore Also move the "Thread type" section down a bit, since it is not so important anymore. Fixes: rust-lang#33321
Configuration menu - View commit details
-
Copy full SHA for a26f6ba - Browse repository at this point
Copy the full SHA a26f6baView commit details -
Rollup merge of rust-lang#33336 - birkenfeld:issue-27361, r=sfackler
parser: do not try to continue with `unsafe` on foreign fns The changed line makes it look like `unsafe` is allowed, but the first statement of `parse_item_foreign_fn` is: ``` self.expect_keyword(keywords::Fn)?; ``` So we get the strange "expected one of `fn`, `pub`, `static`, or `unsafe`, found `unsafe`". Fixes: rust-lang#27361
Configuration menu - View commit details
-
Copy full SHA for 04097c6 - Browse repository at this point
Copy the full SHA 04097c6View commit details -
Rollup merge of rust-lang#33342 - birkenfeld:issue-26472, r=arielb1
typeck: if a private field exists, also check for a public method For example, `Vec::len` is both a field and a method, and usually encountering `vec.len` just means that the parens were forgotten. Fixes: rust-lang#26472 NOTE: I added the parameter `allow_private` to `method::exists` since I don't want to suggest inaccessible methods. For the second case, where only the method exists, I think it would make sense to set it to `false` as well, but I wanted to preserve compatibility for this case.
Configuration menu - View commit details
-
Copy full SHA for e94a722 - Browse repository at this point
Copy the full SHA e94a722View commit details -
Rollup merge of rust-lang#33402 - shepmaster:copied-variable-name, r=…
…Manishearth Replace copy-pasted variable name with relevant one
Configuration menu - View commit details
-
Copy full SHA for da36566 - Browse repository at this point
Copy the full SHA da36566View commit details -
Rollup merge of rust-lang#33409 - kindlychung:patch-2, r=steveklabnik
errors in the doc
Configuration menu - View commit details
-
Copy full SHA for 9b68372 - Browse repository at this point
Copy the full SHA 9b68372View commit details -
Rollup merge of rust-lang#33410 - GuillaumeGomez:explain, r=Manishearth
Remove rust flags from doc block Fixes rust-lang#33405 r? @Manishearth
Configuration menu - View commit details
-
Copy full SHA for 7860cc5 - Browse repository at this point
Copy the full SHA 7860cc5View commit details -
Rollup merge of rust-lang#33428 - fiveop:wrapping_example, r=stevekla…
…bnik Add an example to Wrapping's documentation. Such an example would have helped me understand `Wrapping` quicker. r? @steveklabnik
Configuration menu - View commit details
-
Copy full SHA for 8842100 - Browse repository at this point
Copy the full SHA 8842100View commit details -
Rollup merge of rust-lang#33430 - phil-opp:patch-1, r=alexcrichton
[Doc] Default cpu is "generic" (and not "default") See [line 305](https://github.com/phil-opp/rust/blob/a22ca2872ef6782306012e6817dc4b8b778c43e9/src/librustc_back/target/mod.rs#L305).
Configuration menu - View commit details
-
Copy full SHA for 47b6999 - Browse repository at this point
Copy the full SHA 47b6999View commit details -
Rollup merge of rust-lang#33437 - brson:trips, r=Manishearth
doc: Update reference with better description of target_env The definition of this value recently changed slightly. It no longer corresponds directly to the target triple. Also shuffled things around to make the order of cfg descriptions more logical and added text related them to the target triple. cc rust-lang#33403
Configuration menu - View commit details
-
Copy full SHA for 0af9250 - Browse repository at this point
Copy the full SHA 0af9250View commit details -
Rollup merge of rust-lang#33438 - birkenfeld:dup-words, r=steveklabnik
Fix some some duplicate words.
Configuration menu - View commit details
-
Copy full SHA for 3ac65ea - Browse repository at this point
Copy the full SHA 3ac65eaView commit details