Skip to content

Rollup of 9 pull requests #143715

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 27 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
6d1e93d
Add support for $crate to Ident
Apr 14, 2025
9a7db56
moved tests
Kivooeo Jun 30, 2025
7ca9f93
tests/codegen/enum/enum-match.rs: accept negative range attribute
TimNN Jul 1, 2025
7c2cc2c
cleaned up some tests
Kivooeo Jun 30, 2025
49421d1
Remove support for dynamic allocas
mejrs Jun 24, 2025
0455577
fix: correct parameter names in LLVMRustBuildMinNum and LLVMRustBuild…
dillona Jul 8, 2025
fab9c64
Add triagebot stdarch mention ping
Kobzol Jul 8, 2025
66bc234
tidy: refactor --extra-checks parsing
lolbinarycat Jul 3, 2025
96cdbb9
Win: Use exceptions with empty data for SEH panic exception copies
Fulgen301 Jul 8, 2025
25eb382
Error on moving unsized values rather than ICE'ing
mejrs Jul 8, 2025
9eb1805
tidy: factor out change detection logic and make it more robust
lolbinarycat Jul 3, 2025
4a6f697
tidy: update files_modified to take CiInfo
lolbinarycat Jul 3, 2025
64456e0
tidy: add `auto:` prefix to --extra-checks syntax
lolbinarycat Jul 3, 2025
6b349a4
tidy: warn when --extra-checks is passed an invalid lang:kind combo
lolbinarycat Jul 3, 2025
9aafc98
tidy: assume all files are modified in CI
lolbinarycat Jul 8, 2025
1f80fd0
bootstrap: add change tracker entry for new --extra-checks=auto: feature
lolbinarycat Jul 8, 2025
e7ef31d
mbe: Refactor diagnostics for invalid metavar expression syntax
tgross35 Jun 21, 2025
87e9819
mbe: Refactor the diagnostic for unrecognized metavariable expressions
tgross35 Jun 21, 2025
3f8b609
Rollup merge of #141996 - Daniel-Aaron-Bloom:dollar_crate, r=petroche…
tgross35 Jul 10, 2025
9e95e4b
Rollup merge of #142911 - mejrs:unsized, r=compiler-errors
tgross35 Jul 10, 2025
894dc34
Rollup merge of #142950 - tgross35:metavariable-expr-rework, r=petroc…
tgross35 Jul 10, 2025
e3e7b07
Rollup merge of #143270 - TimNN:fix-enum-match, r=nikic
tgross35 Jul 10, 2025
915a8ae
Rollup merge of #143298 - Kivooeo:tf23, r=tgross35
tgross35 Jul 10, 2025
fee2068
Rollup merge of #143398 - lolbinarycat:tidy-extra-checks-auto, r=Kobzol
tgross35 Jul 10, 2025
a1c2c61
Rollup merge of #143632 - dillona:ffi-param-names, r=jieyouxu
tgross35 Jul 10, 2025
8cae093
Rollup merge of #143644 - Kobzol:stdarch-mention, r=Amanieu
tgross35 Jul 10, 2025
9ec2968
Rollup merge of #143651 - Fulgen301:seh-exception-ptr, r=ChrisDenton
tgross35 Jul 10, 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
4 changes: 2 additions & 2 deletions compiler/rustc_codegen_llvm/src/llvm/ffi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1974,12 +1974,12 @@ unsafe extern "C" {
pub(crate) fn LLVMRustBuildMinNum<'a>(
B: &Builder<'a>,
LHS: &'a Value,
LHS: &'a Value,
RHS: &'a Value,
) -> &'a Value;
pub(crate) fn LLVMRustBuildMaxNum<'a>(
B: &Builder<'a>,
LHS: &'a Value,
LHS: &'a Value,
RHS: &'a Value,
) -> &'a Value;

// Atomic Operations
Expand Down