-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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 9 pull requests #57874
Rollup of 9 pull requests #57874
Commits on Jan 18, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 1dc4e41 - Browse repository at this point
Copy the full SHA 1dc4e41View commit details -
Configuration menu - View commit details
-
Copy full SHA for efda681 - Browse repository at this point
Copy the full SHA efda681View commit details
Commits on Jan 22, 2019
-
Configuration menu - View commit details
-
Copy full SHA for a59eabb - Browse repository at this point
Copy the full SHA a59eabbView commit details -
Configuration menu - View commit details
-
Copy full SHA for db2978a - Browse repository at this point
Copy the full SHA db2978aView commit details -
Configuration menu - View commit details
-
Copy full SHA for f6da141 - Browse repository at this point
Copy the full SHA f6da141View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c57d1d - Browse repository at this point
Copy the full SHA 2c57d1dView commit details -
Configuration menu - View commit details
-
Copy full SHA for b154234 - Browse repository at this point
Copy the full SHA b154234View commit details -
Configuration menu - View commit details
-
Copy full SHA for b876694 - Browse repository at this point
Copy the full SHA b876694View commit details
Commits on Jan 23, 2019
-
Configuration menu - View commit details
-
Copy full SHA for d4ee556 - Browse repository at this point
Copy the full SHA d4ee556View commit details -
Add os::fortanix_sgx::ffi module
Jethro Beekman committedJan 23, 2019 Configuration menu - View commit details
-
Copy full SHA for 8db59d4 - Browse repository at this point
Copy the full SHA 8db59d4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0db2587 - Browse repository at this point
Copy the full SHA 0db2587View commit details -
Configuration menu - View commit details
-
Copy full SHA for b2dfd96 - Browse repository at this point
Copy the full SHA b2dfd96View commit details -
Configuration menu - View commit details
-
Copy full SHA for 39aa89b - Browse repository at this point
Copy the full SHA 39aa89bView commit details -
Fix std::future::from_generator documentation
This function takes a generator and wraps it in a future, not vice-versa.
Configuration menu - View commit details
-
Copy full SHA for 31cd65f - Browse repository at this point
Copy the full SHA 31cd65fView commit details -
Add suggestion for incorrect field syntax.
This commit adds a suggestion when a `=` character is used when specifying the value of a field in a struct constructor incorrectly instead of a `:` character.
Configuration menu - View commit details
-
Copy full SHA for f14d007 - Browse repository at this point
Copy the full SHA f14d007View commit details
Commits on Jan 24, 2019
-
Configuration menu - View commit details
-
Copy full SHA for b12aa4f - Browse repository at this point
Copy the full SHA b12aa4fView commit details -
Rollup merge of rust-lang#57066 - Zoxc:graph-race, r=michaelwoerister
Fix race condition when emitting stored diagnostics r? @michaelwoerister
Configuration menu - View commit details
-
Copy full SHA for b3cefbc - Browse repository at this point
Copy the full SHA b3cefbcView commit details -
Rollup merge of rust-lang#57606 - oli-obk:shrink, r=RalfJung
Get rid of the fake stack frame for reading from constants r? @RalfJung fixes the ice in rust-lang#53708 but still keeps around the wrong "non-exhaustive match" error cc @varkor
Configuration menu - View commit details
-
Copy full SHA for 25f6171 - Browse repository at this point
Copy the full SHA 25f6171View commit details -
Rollup merge of rust-lang#57734 - oli-obk:fixes_and_cleanups, r=pnkfelix
Fix evaluating trivial drop glue in constants ```rust struct A; impl Drop for A { fn drop(&mut self) {} } const FOO: Option<A> = None; const BAR: () = (FOO, ()).1; ``` was erroring with ``` error: any use of this value will cause an error --> src/lib.rs:9:1 | 9 | const BAR: () = (FOO, ()).1; | ^^^^^^^^^^^^^^^^^^^^^^^^^^-^ | | | calling non-const function `std::ptr::real_drop_in_place::<(std::option::Option<A>, ())> - shim(Some((std::option::Option<A>, ())))` | = note: #[deny(const_err)] on by default error: aborting due to previous error ``` before this PR. According to godbolt this last compiled successfully in 1.27
Configuration menu - View commit details
-
Copy full SHA for 7fbecb6 - Browse repository at this point
Copy the full SHA 7fbecb6View commit details -
Rollup merge of rust-lang#57846 - QuietMisdreavus:proc-macro-links, r…
…=GuillaumeGomez rustdoc: fix ICE from loading proc-macro stubs Fixes rust-lang#55399 When trying to resolve a macro, rustdoc first tries to load it from the resolver to see whether it's a Macros 2.0 macro, so it can return that Def before looking for any other kind of macro. However, this becomes a problem when you try to load proc-macros: since you can't use a proc-macro inside its own crate, this lookup also fails when attempting to link to it. However, we have a hint that this lookup will fail: Macros which are actually `ProcMacroStub`s will fail the lookup, so we can use that information to skip loading the macro. Rustdoc will then happily check `resolve.all_macros`, which will return a usable Def that we can link to.
Configuration menu - View commit details
-
Copy full SHA for bbae978 - Browse repository at this point
Copy the full SHA bbae978View commit details -
Rollup merge of rust-lang#57860 - jethrogb:jb/sgx-os-ffi, r=joshtriplett
Add os::fortanix_sgx::ffi module This uses the same byte slice accessors that Unix has. The [ABI specifies](https://docs.rs/fortanix-sgx-abi/0.3.2/fortanix_sgx_abi/struct.ByteBuffer.html) byte slices.
Configuration menu - View commit details
-
Copy full SHA for eea9b2c - Browse repository at this point
Copy the full SHA eea9b2cView commit details -
Rollup merge of rust-lang#57861 - pepyakin:wasm-dont-export-table, r=…
…alexcrichton Don't export table by default in wasm Revert of rust-lang#53237 As per discussion here rustwasm/team#251
Configuration menu - View commit details
-
Copy full SHA for b5628bb - Browse repository at this point
Copy the full SHA b5628bbView commit details -
Rollup merge of rust-lang#57863 - davidtwco:issue-57684, r=estebank
Add suggestion for incorrect field syntax. Fixes rust-lang#57684. This commit adds a suggestion when a `=` character is used when specifying the value of a field in a struct constructor incorrectly instead of a `:` character. r? @estebank
Configuration menu - View commit details
-
Copy full SHA for 8470dad - Browse repository at this point
Copy the full SHA 8470dadView commit details -
Rollup merge of rust-lang#57867 - Aaron1011:fix/gen-future-doc, r=Cen…
…tril Fix std::future::from_generator documentation This function takes a generator and wraps it in a future, not vice-versa.
Configuration menu - View commit details
-
Copy full SHA for 11fef00 - Browse repository at this point
Copy the full SHA 11fef00View commit details -
Rollup merge of rust-lang#57873 - milesand:master, r=Centril
Stabilize no_panic_pow This would close rust-lang#48320. I'm not sure if I've done this right, I've just changed attribute name to stable and set `since` to two minor versions above current stable since that seemed like what others were doing.
Configuration menu - View commit details
-
Copy full SHA for 84dd79b - Browse repository at this point
Copy the full SHA 84dd79bView commit details