8000 Rollup of 7 pull requests by matthiaskrgr · Pull Request #127143 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 7 pull requests #127143

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 21 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
b03d939
Improve autovectorization of to_lowercase / to_uppercase functions
jhorstmann Apr 10, 2024
a7aafd7
Add codegen test to ensure the pattern used in convert_while_ascii ge…
jhorstmann Jun 3, 2024
b5ea85f
Remove redundant tests
jhorstmann Jun 3, 2024
879d143
Add `.ignore` file to make `config.toml` searchable in vscode
WaffleLapkin Jun 23, 2024
39bf1dc
Small fixme in core now that split_first has no codegen issues
GrigorenkoPV Jun 24, 2024
5901a2d
Use a fixed chunk size in codegen test
jhorstmann Jun 28, 2024
28ba5e4
Updated docs on `#[panic_handler]` in `library/core/src/lib.rs`
Jun 19, 2024
af8be47
Use a fixed chunk size also in production code and update some comments
jhorstmann Jun 29, 2024
623b9c8
Update comment in codegen test
jhorstmann Jun 29, 2024
e52d95b
Remove unused compiler dependencies
Kobzol Jun 29, 2024
8b783f1
rustdoc: update to pulldown-cmark 0.11
notriddle Jun 29, 2024
61e2f5c
rustdoc: add usable lint for pulldown-cmark-0.11 parsing changes
notriddle Jun 29, 2024
a5fc783
clippy: update to pulldown-cmark 0.11
notriddle Jun 29, 2024
682e7c1
Print `TypeId` as a `u128` for `Debug`
tgross35 Jun 29, 2024
bef24a4
Rollup merge of #123778 - jhorstmann:optimize-upper-lower-auto-vector…
matthiaskrgr Jun 30, 2024
b19c233
Rollup merge of #126705 - safinaskar:panic, r=Mark-Simulacrum
matthiaskrgr Jun 30, 2024
d091d48
Rollup merge of #126876 - WaffleLapkin:unignoreconfigtoml, r=Mark-Sim…
matthiaskrgr Jun 30, 2024
4cf6f8b
Rollup merge of #126906 - GrigorenkoPV:fixme-split_at_first, r=Mark-S…
matthiaskrgr Jun 30, 2024
a23f956
Rollup merge of #127127 - notriddle:notriddle/pulldown-cmark-0.11, r=…
matthiaskrgr Jun 30, 2024
1fce09b
Rollup merge of #127131 - Kobzol:remove-unused-deps, r=compiler-errors
matthiaskrgr Jun 30, 2024
865788e
Rollup merge of #127134 - tgross35:typeid-debug, r=Nilstrieb
matthiaskrgr Jun 30, 2024
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
7 changes: 2 additions & 5 deletions library/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,9 @@
//! Rust user code is to call the functions provided by this library instead (such as
//! `ptr::copy`).
//!
//! * `rust_begin_panic` - This function takes four arguments, a
//! `fmt::Arguments`, a `&'static str`, and two `u32`'s. These four arguments
//! dictate the panic message, the file at which panic was invoked, and the
//! line and column inside the file. It is up to consumers of this core
//! * Panic handler - This function takes one argument, a `&panic::PanicInfo`. It is up to consumers of this core
//! library to define this panic function; it is only required to never
//! return. This requires a `lang` attribute named `panic_impl`.
//! return. You should mark your implementation using `#[panic_handler]`.
//!
//! * `rust_eh_personality` - is used by the failure mechanisms of the
//! compiler. This is often mapped to GCC's personality function, but crates
Expand Down
0