Skip to content

Rollup of 11 pull requests #59513

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 31 commits into from
Mar 29, 2019
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
8b8488c
bootstrap: build compiler-builtins with -Z emit-stack-sizes
japaric Mar 24, 2019
7d365cf
compile all crates under test w/ -Zemit-stack-sizes
japaric Mar 25, 2019
c764890
musl: build toolchain libs with -fPIC
mati865 Mar 27, 2019
c6e3ea4
Visit path in `walk_mac`
varkor Mar 25, 2019
41316f0
Combine all builtin late lints
Zoxc Jan 31, 2019
cd32f9b
Remove LintSession and run incremental and whole crate lints in parallel
Zoxc Jan 31, 2019
dee389f
Run module lint passes in parallel
Zoxc Jan 31, 2019
e9a8bef
Remove unnecessary with_globals calls
Zoxc Mar 28, 2019
8dbae79
Use write_all instead of write in example code
mbrubeck Mar 28, 2019
d9bdd01
Stablize {f32,f64}::copysign().
crlf0710 Mar 28, 2019
9f14e14
deny duplicate matcher bindings by default
mark-i-m Mar 24, 2019
3ba7454
Use track_errors
JohnTitor Mar 21, 2019
526b355
Remove err_count
JohnTitor Mar 22, 2019
ee0e1b7
Set ok value
JohnTitor Mar 22, 2019
0e76b34
WIP: remove report_as_error
JohnTitor Mar 24, 2019
f0de8e8
Return correct values
JohnTitor Mar 24, 2019
6c8e3a5
Remove unused variable
JohnTitor Mar 24, 2019
0778847
Use ErrorReported
JohnTitor Mar 28, 2019
17a8aff
Use `SmallVec` in `TokenStreamBuilder`.
nnethercote Mar 28, 2019
93fb4d8
Fix missed fn rename in #59284
Mar 29, 2019
8794e21
Rollup merge of #58019 - Zoxc:combine-late-lints, r=estebank
Centril Mar 29, 2019
97927da
Rollup merge of #59358 - JohnTitor:use-track-errors, r=oli-obk
Centril Mar 29, 2019
f9262af
Rollup merge of #59394 - mark-i-m:dup-matcher-bindings-2, r=Centril
Centril Mar 29, 2019
3df97f9
Rollup merge of #59401 - japaric:compiler-builtins-stack-sizes, r=ale…
Centril Mar 29, 2019
0f4c87c
Rollup merge of #59423 - varkor:walk_mac-visit_path, r=petrochenkov
Centril Mar 29, 2019
c2d6c08
Rollup merge of #59468 - mati865:musl_toolchain, r=pnkfelix
Centril Mar 29, 2019
73f9832
Rollup merge of #59476 - nnethercote:TokenStreamBuilder-SmallVec, r=p…
Centril Mar 29, 2019
bf3e6c6
Rollup merge of #59496 - Zoxc:fix-globals, r=oli-obk
Centril Mar 29, 2019
0494cff
Rollup merge of #59498 - mbrubeck:write_all, r=Centril
Centril Mar 29, 2019
18680ae
Rollup merge of #59503 - crlf0710:stablize_copysign, r=SimonSapin
Centril Mar 29, 2019
456fa39
Rollup merge of #59511 - jethrogb:jb/maybeinit-deprecated, r=Centril
Centril Mar 29, 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
Fix missed fn rename in #59284
  • Loading branch information
Jethro Beekman committed Mar 29, 2019
commit 93fb4d83178dde230eb55ce02468867ea6ac44f0
2 changes: 1 addition & 1 deletion src/libstd/sys/sgx/rwlock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ mod tests {

#[inline(never)]
unsafe fn rwlock_new(init: &mut MaybeUninit<RWLock>) {
init.set(RWLock::new());
init.write(RWLock::new());
}

unsafe {
Expand Down