about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTrevor Gross <tmgross@umich.edu>2025-02-19 20:17:02 -0500
committerTrevor Gross <tmgross@umich.edu>2025-02-23 06:13:09 +0000
commitc7b251e09e097a9b33bcaf5ae677ac641da9a360 (patch)
tree268987a75d7603cb288eb33ab10e81aa4435b6c4
parent35a43a4833c032c975b97beccf266facf4583a63 (diff)
downloadrust-c7b251e09e097a9b33bcaf5ae677ac641da9a360.tar.gz
rust-c7b251e09e097a9b33bcaf5ae677ac641da9a360.zip
Update `compiler-builtins` to 0.1.147
Removes an ABI hack that used `<2 x i64>` to return `i128` in `xmm0` on
Windows [1].

[1]: https://github.com/rust-lang/compiler-builtins/pull/759
Link: https://github.com/rust-lang/rust/issues/116558
Link: https://github.com/rust-lang/compiler-builtins/issues/758
-rw-r--r--patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch b/patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch
index eb1fc4b0ad5..364a6a035ab 100644
--- a/patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch
+++ b/patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch
@@ -16,8 +16,8 @@ index 7165c3e48af..968552ad435 100644
  
  [dependencies]
  core = { path = "../core", public = true }
--compiler_builtins = { version = "=0.1.146", features = ['rustc-dep-of-std'] }
-+compiler_builtins = { version = "=0.1.146", features = ['rustc-dep-of-std', 'no-f16-f128'] }
+-compiler_builtins = { version = "=0.1.147", features = ['rustc-dep-of-std'] }
++compiler_builtins = { version = "=0.1.147", features = ['rustc-dep-of-std', 'no-f16-f128'] }
  
  [dev-dependencies]
  rand = { version = "0.8.5", default-features = false, features = ["alloc"] }