Skip to content

Rollup of 11 pull requests #136570

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 28 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
e0bbeb7
Make cenum_impl_drop_cast a hard error
ehuss Jan 24, 2025
56c6ffb
Use +secure-plt for powerpc-unknown-linux-gnu{,spe}
taiki-e Jan 27, 2025
1d81b53
Add regression test
oli-obk Jan 31, 2025
c766b94
Avoid passing around an `Expr` that is only needed for its HirId and …
oli-obk Feb 1, 2025
663191d
Uniformly handle HIR literals in visitors and lints
oli-obk Feb 1, 2025
1ed804d
uefi: process: Add support for command environment variables
Ayush1325 Jan 19, 2025
4f83426
std: move network code into `sys`
joboet Feb 2, 2025
8a3cb13
bless UI test involving private name
joboet Feb 2, 2025
2431977
Rename and Move some UI tests to more suitable subdirs
DuskyElf Feb 4, 2025
90fee92
Update `compiler-builtins` to 0.1.145
tgross35 Jan 16, 2025
5b981a8
Quickfix `//@ check-pass` is enough
DuskyElf Feb 4, 2025
07cf20e
Rename slice::take methods to split_off
cramertj Feb 4, 2025
836a989
Add OneSidedRangeBound to eliminate panic in `split_point_of`
cramertj Feb 4, 2025
e42cb3b
cg_gcc: Directly use rustc_abi instead of reexports
workingjubilee Nov 3, 2024
0772400
Arbitrary self types v2: recursion test
adetaylor Feb 5, 2025
24d94b2
Add regression test for negative unsigned literals in patterns
oli-obk Jan 30, 2025
f44794f
Only allow negation on literals in patterns if it's on integers or fl…
oli-obk Jan 30, 2025
587bf89
Rollup merge of #132547 - workingjubilee:rustc-abi-in-cg-gcc, r=Guill…
jieyouxu Feb 5, 2025
f9d9b84
Rollup merge of #135964 - ehuss:cenum_impl_drop_cast, r=Nadrieril
jieyouxu Feb 5, 2025
41733ae
Rollup merge of #136154 - taiki-e:ppc-secure-plt, r=nikic
jieyouxu Feb 5, 2025
3647f7a
Rollup merge of #136304 - oli-obk:push-ymxoklvzrpvx, r=Nadrieril
jieyouxu Feb 5, 2025
b4722ca
Rollup merge of #136393 - oli-obk:pattern-type-lit-oflo-checks, r=com…
jieyouxu Feb 5, 2025
ebc38a6
Rollup merge of #136418 - Ayush1325:command-env, r=jhpratt
jieyouxu Feb 5, 2025
8f5850b
Rollup merge of #136449 - joboet:move_pal_net, r=ChrisDenton
jieyouxu Feb 5, 2025
fa1a22c
Rollup merge of #136536 - DuskyElf:master, r=jieyouxu
jieyouxu Feb 5, 2025
d41e33f
Rollup merge of #136537 - tgross35:update-builtins, r=tgross35
jieyouxu Feb 5, 2025
3d90740
Rollup merge of #136555 - cramertj:split_off, r=dtolnay
jieyouxu Feb 5, 2025
4ba6762
Rollup merge of #136567 - adetaylor:test-for-recursion, r=oli-obk
jieyouxu Feb 5, 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
Update compiler-builtins to 0.1.145
This includes [1] which is required for LLVM 20.

[1]: rust-lang/compiler-builtins#752
  • Loading branch information
tgross35 committed Feb 4, 2025
commit 90fee92fcccb7913d5e40e1526f858d67fdedd75
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ index 7165c3e48af..968552ad435 100644

[dependencies]
core = { path = "../core" }
-compiler_builtins = { version = "=0.1.143", features = ['rustc-dep-of-std'] }
+compiler_builtins = { version = "=0.1.143", features = ['rustc-dep-of-std', 'no-f16-f128'] }
-compiler_builtins = { version = "=0.1.145", features = ['rustc-dep-of-std'] }
+compiler_builtins = { version = "=0.1.145", features = ['rustc-dep-of-std', 'no-f16-f128'] }

[dev-dependencies]
rand = { version = "0.8.5", default-features = false, features = ["alloc"] }
Expand Down
4 changes: 2 additions & 2 deletions library/Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ dependencies = [

[[package]]
name = "compiler_builtins"
version = "0.1.143"
version = "0.1.145"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c85ba2077e3eab3dd81be4ece6b7fb2ad0887c1fb813e9a45400baf75c6c7c29"
checksum = "da0705f5abaaab7168ccc14f8f340ded61be2bd3ebea86b9834b6acbc8495de8"
dependencies = [
"cc",
"rustc-std-workspace-core",
Expand Down
2 changes: 1 addition & 1 deletion library/alloc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2021"

[dependencies]
core = { path = "../core" }
compiler_builtins = { version = "=0.1.143", features = ['rustc-dep-of-std'] }
compiler_builtins = { version = "=0.1.145", features = ['rustc-dep-of-std'] }

[dev-dependencies]
rand = { version = "0.8.5", default-features = false, features = ["alloc"] }
Expand Down
2 changes: 1 addition & 1 deletion library/std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
panic_unwind = { path = "../panic_unwind", optional = true }
panic_abort = { path = "../panic_abort" }
core = { path = "../core", public = true }
compiler_builtins = { version = "=0.1.143" }
compiler_builtins = { version = "=0.1.145" }
unwind = { path = "../unwind" }
hashbrown = { version = "0.15", default-features = false, features = [
'rustc-dep-of-std',
Expand Down
Loading