Skip to content

Rollup of 17 pull requests #57354

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

Merged
merged 40 commits into from
Jan 5, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
2149d73
Remove unnecessary borrow generation
matthewjasper Dec 1, 2018
49e52e7
Remove unused types from rustc::mir::interpret
matthewjasper Dec 29, 2018
afb7c06
Remove unused nll debug flags
matthewjasper Dec 30, 2018
794b81e
Rename and fix nolink-with-link-args test
Smibu Dec 31, 2018
f4826ab
Fix backtraces on Windows
Zoxc Dec 31, 2018
d2c91a1
Fix broken links to second edition TRPL.
frewsxcv Jan 1, 2019
0fd5003
src/jemalloc is gone, remove its mention from COPYRIGHT
SimonSapin Jan 2, 2019
3852dc8
Add Clippy to config.toml.example
mati865 Jan 2, 2019
c0662a0
Update the stdsimd submodule
alexcrichton Jan 2, 2019
a944ecf
Fix 'be be' constructs
d-e-s-o Jan 3, 2019
917985e
VaList::copy should not require a mutable ref
dlrobertson Jan 3, 2019
3fb42cf
const fn no longer comming soon on const docs
mendess Jan 3, 2019
5e3a560
Allow converting Box<T: !Sized> -> Pin<Box<T>>
Nemo157 Jan 3, 2019
d1a42ea
Add discoverable function for converting Box<T> -> Pin<Box<T>>
Nemo157 Jan 3, 2019
190d139
Fix repeated word typos
wikku Jan 3, 2019
d60fa1d
Doc rewording, use the same name `writer`
king6cong Jan 4, 2019
0b55c79
force binary filename for compiled doctests
QuietMisdreavus Jan 4, 2019
632d584
Update src/librustc/ty/fold.rs
awaitlink Jan 4, 2019
06243b1
Fix repeated word in astconv.rs
wikku Jan 4, 2019
a1189ac
Replace CrateAnalysis::access_levels with query
Xanewok Jan 4, 2019
480d0f3
Remove unused name from CrateAnalysis
Xanewok Jan 4, 2019
79ea93c
librustc_mir: Make qualify_min_const_fn module public
phansch Jan 4, 2019
2433526
use `delay_span_bug` instead of `bug!` when doing layout sanity check
mikeyhew Dec 19, 2018
aa83481
Rollup merge of #57219 - matthewjasper:mir-cleanup, r=nikomatsakis
kennytm Jan 5, 2019
6c58b84
Rollup merge of #57229 - mikeyhew:fix-56806, r=varkor
kennytm Jan 5, 2019
3d8e5d4
Rollup merge of #57233 - Smibu:rename-and-fix-nolink-test, r=alexcric…
kennytm Jan 5, 2019
dd3e273
Rollup merge of #57238 - Zoxc:bt-fix, r=alexcrichton
kennytm Jan 5, 2019
aa5fc74
Rollup merge of #57249 - frewsxcv:frewsxcv-second-edition, r=KodrAus
kennytm Jan 5, 2019
69d3c1a
Rollup merge of #57267 - rust-lang:SimonSapin-patch-1, r=varkor
kennytm Jan 5, 2019
85ddc4d
Rollup merge of #57273 - alexcrichton:update-stdsimd, r=nikomatsakis
kennytm Jan 5, 2019
f11f858
Rollup merge of #57278 - mati865:config_clippy, r=alexcrichton
kennytm Jan 5, 2019
952af5e
Rollup merge of #57295 - d-e-s-o:topic/be-be, r=zackmdavis
kennytm Jan 5, 2019
dfc1037
Rollup merge of #57311 - dlrobertson:fix_valist_copy, r=KodrAus
kennytm Jan 5, 2019
e1a1ab0
Rollup merge of #57312 - Mendess2526:master, r=Centril
kennytm Jan 5, 2019
676b0b0
Rollup merge of #57313 - Nemo157:box-to-pin, r=cramertj
kennytm Jan 5, 2019
ab55ecf
Rollup merge of #57314 - wiktorkuchta:master, r=Centril
kennytm Jan 5, 2019
a3afdd4
Rollup merge of #57326 - king6cong:doc, r=rkruppe
kennytm Jan 5, 2019
284a419
Rollup merge of #57338 - QuietMisdreavus:doctest-file-name, r=Guillau…
kennytm Jan 5, 2019
06c07f9
Rollup merge of #57342 - phansch:make_public, r=Centril
kennytm Jan 5, 2019
d9885c4
Rollup merge of #57343 - Xanewok:querify-access-levels, r=nikomatsakis
kennytm Jan 5, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update the stdsimd submodule
Add a new cmpxchg16b intrinsics for x86_64!
  • Loading branch information
alexcrichton committed Jan 2, 2019
commit c0662a033e53106465c75b44adfa6a14304ea1ac
1 change: 1 addition & 0 deletions src/libcore/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@
#![feature(aarch64_target_feature)]
#![feature(wasm_target_feature)]
#![feature(avx512_target_feature)]
#![cfg_attr(not(stage0), feature(cmpxchg16b_target_feature))]
#![feature(const_slice_len)]
#![feature(const_str_as_bytes)]
#![feature(const_str_len)]
Expand Down
2 changes: 1 addition & 1 deletion src/stdsimd