Skip to content

Rollup of 9 pull requests #136961

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

Closed
wants to merge 34 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
f94ada1
Add cygwin target.
Berrysoft Jan 1, 2025
33d0f38
Apply suggestions
Berrysoft Feb 5, 2025
8e5207e
Reformat files
Berrysoft Feb 10, 2025
42ceb25
compiler/rustc_data_structures/src/sync.rs: these RwLock methods are …
safinaskar Feb 8, 2025
25b6761
compiler/rustc_data_structures/src/sync.rs: remove "impl Clone for Rw…
safinaskar Feb 9, 2025
c9c7b44
compiler/rustc_data_structures/src/sync.rs: delete MappedLockGuard
safinaskar Feb 11, 2025
8f684c9
compiler/rustc_data_structures/src/sync.rs: delete Weak
safinaskar Feb 11, 2025
4a2c7f4
compiler/rustc_data_structures/src/sync.rs: remove atomics, but not A…
safinaskar Feb 11, 2025
d79f9ca
compiler/rustc_data_structures/src/sync.rs: delete Sync and Send
safinaskar Feb 11, 2025
afa01c1
src/doc/rustc-dev-guide/src/parallel-rustc.md: remove Arc and Rc (it …
safinaskar Feb 11, 2025
851cc4b
compiler/rustc_codegen_gcc/src/back/lto.rs: delete "unsafe impl Sync/…
safinaskar Feb 11, 2025
51f49d8
compiler/rustc_codegen_llvm/src/lib.rs: remove "unsafe impl Send/Sync"
safinaskar Feb 11, 2025
0240690
compiler/rustc_data_structures/src/sync/worker_local.rs: delete "unsa…
safinaskar Feb 11, 2025
8506dd2
config.example.toml: remove "parallel-compiler"
safinaskar Feb 11, 2025
ffefb13
Always perform discr read for never pattern in EUV
compiler-errors Feb 11, 2025
5a76304
Nits
compiler-errors Feb 11, 2025
37006eb
Implement `f{16,32,64,128}::{erf,erfc}`
GrigorenkoPV Jan 30, 2025
c917373
Fix import in bench for wasm
ehuss Feb 12, 2025
d1b35f9
Improved named region errors
compiler-errors Feb 4, 2025
659e20f
Remove `LLVMGetModuleContext`
Zalathar Feb 8, 2025
e7cef26
cg_llvm: Reduce visibility of all functions in the llvm module
dpaoliello Feb 11, 2025
c72d443
Use core stubs in some CMSE tests
compiler-errors Feb 6, 2025
516afd5
Implement and use BikeshedGuaranteedNoDrop for union/unsafe field val…
compiler-errors Feb 6, 2025
d0564fd
Use BikeshedGuaranteedNotDrop in unsafe binder type WF too
compiler-errors Feb 6, 2025
4bb0c3d
Split out the `extern_system_varargs` feature
workingjubilee Feb 12, 2025
d46cf6a
Rollup merge of #134999 - Berrysoft:dev/new-cygwin-target, r=chenyuka…
jhpratt Feb 13, 2025
7e41e73
Rollup merge of #136324 - GrigorenkoPV:erf, r=tgross35
jhpratt Feb 13, 2025
1c4813f
Rollup merge of #136559 - compiler-errors:resolve-regions-for-type-te…
jhpratt Feb 13, 2025
13c1b80
Rollup merge of #136660 - compiler-errors:BikeshedGuaranteedNoDrop, r…
jhpratt Feb 13, 2025
c10150c
Rollup merge of #136858 - safinaskar:parallel-cleanup-2025-02-11-07-5…
jhpratt Feb 13, 2025
f7d383c
Rollup merge of #136881 - dpaoliello:cleanllvm3, r=Zalathar
jhpratt Feb 13, 2025
ca7c608
Rollup merge of #136888 - compiler-errors:never-read, r=Nadrieril
jhpratt Feb 13, 2025
e8094a5
Rollup merge of #136948 - workingjubilee:split-off-extern-system-vara…
jhpratt Feb 13, 2025
374fee3
Rollup merge of #136949 - ehuss:wasm-bench-time, r=jhpratt
jhpratt Feb 13, 2025
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
src/doc/rustc-dev-guide/src/parallel-rustc.md: remove Arc and Rc (it …
…seems they are left-over after my PR)
  • Loading branch information
safinaskar committed Feb 11, 2025
commit afa01c145c290b2fd19f36db7037beb46a7ed0c9
2 changes: 0 additions & 2 deletions src/doc/rustc-dev-guide/src/parallel-rustc.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,10 @@ Here are some resources that can be used to learn more:
- [This list of interior mutability in the compiler by nikomatsakis][imlist]

[`rayon`]: https://crates.io/crates/rayon
[Arc]: https://doc.rust-lang.org/std/sync/struct.Arc.html
[imlist]: https://github.com/nikomatsakis/rustc-parallelization/blob/master/interior-mutability-list.md
[irlo0]: https://internals.rust-lang.org/t/parallelizing-rustc-using-rayon/6606
[irlo1]: https://internals.rust-lang.org/t/help-test-parallel-rustc/11503
[monomorphization]: backend/monomorph.md
[parallel-rustdoc]: https://github.com/rust-lang/rust/issues/82741
[Rc]: https://doc.rust-lang.org/std/rc/struct.Rc.html
[rustc-rayon]: https://github.com/rust-lang/rustc-rayon
[tracking]: https://github.com/rust-lang/rust/issues/48685