Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
47b138b
Make aliases search support partial matching
GuillaumeGomez Jul 15, 2025
b0bf51f
Update rustdoc search tester to new alias output
GuillaumeGomez Jul 15, 2025
c079c96
Add test for aliases partial match
GuillaumeGomez Jul 15, 2025
10762d5
Fix debuginfo-lto-alloc.rs test
bjorn3 Jul 17, 2025
63e1074
Update AMDGPU data layout
nikic Jul 9, 2025
12b19be
Pass wasm exception model to TargetOptions
nikic Jul 11, 2025
a65563e
Make emit-arity-indicator.rs a no_core test
nikic Jul 14, 2025
ff1fdff
Make bit ops traits const
oli-obk Jul 18, 2025
15acb0e
unicode-table-gen: clippy fixes
hkBst Jul 18, 2025
0959305
unicode-table-gen: edition 2024
hkBst Jul 18, 2025
b0073d9
unicode-table-gen: more clippy fixes
hkBst Jul 18, 2025
8a8717e
fix: don't panic on volatile access to null
LuigiPiucco Apr 20, 2025
4cebbab
Add implicit sized bound to trait ascription types
compiler-errors Jul 18, 2025
e6f2830
Remove pretty print hack for async blocks
compiler-errors Jul 18, 2025
7672e4e
interpret: fix TypeId pointers being considered data pointers
RalfJung Jul 19, 2025
ca01e7d
Stabilize `const_float_round_methods`
nxsaken Jul 7, 2025
caf4f11
Add `#[rustc_intrinsic_const_stable_indirect]` to float rounding
nxsaken Jul 7, 2025
2f14d0a
Add code comment explaining better what `Row.name` is for doc aliases
GuillaumeGomez Jul 19, 2025
61bfc09
So many test updates x_x
scottmcm Jul 12, 2025
2e959f0
...and wasm tests too
scottmcm Jul 19, 2025
67c87c9
Update cranelift tests
scottmcm Jul 13, 2025
d0d1a12
Update Miri Tests
scottmcm Jul 13, 2025
cc5f3f2
Ban projecting into SIMD types [MCP838]
scottmcm Mar 7, 2025
db1449a
Initialize mingw for the runner's user
ChrisDenton Jul 19, 2025
5628885
Remove deprecated MaybeUninit slice methods
clarfonthey Jul 18, 2025
5af58ad
Rollup merge of #141260 - LuigiPiucco:volatile-null, r=RalfJung
jhpratt Jul 20, 2025
efc7e4b
Rollup merge of #143604 - nxsaken:const_float_round_methods, r=RalfJung
jhpratt Jul 20, 2025
2e2fce9
Rollup merge of #143833 - scottmcm:final-mcp-838, r=compiler-errors
jhpratt Jul 20, 2025
dd0b175
Rollup merge of #143988 - GuillaumeGomez:alias-inexact, r=lolbinarycat
jhpratt Jul 20, 2025
464d57b
Rollup merge of #144078 - bjorn3:fix_test, r=compiler-errors
jhpratt Jul 20, 2025
5beec02
Rollup merge of #144111 - clarfonthey:maybe-uninit-deprecated, r=jhpratt
jhpratt Jul 20, 2025
f5e27aa
Rollup merge of #144116 - nikic:llvm-21-fixes, r=dianqk
jhpratt Jul 20, 2025
5a90c19
Rollup merge of #144120 - oli-obk:const-bitops, r=fee1-dead
jhpratt Jul 20, 2025
5ad429d
Rollup merge of #144134 - hkBst:cleanup-unicode-table-gen, r=Mark-Sim…
jhpratt Jul 20, 2025
aca16bf
Rollup merge of #144142 - compiler-errors:itib, r=fmease
jhpratt Jul 20, 2025
9111b89
Rollup merge of #144148 - compiler-errors:async-print-hack, r=lqd
jhpratt Jul 20, 2025
a8ea93a
Rollup merge of #144169 - RalfJung:type-id-fix, r=oli-obk
jhpratt Jul 20, 2025
43f7387
Rollup merge of #144196 - ChrisDenton:init-mingw, r=mati865
jhpratt Jul 20, 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
...and wasm tests too
  • Loading branch information
scottmcm committed Jul 19, 2025
commit 2e959f0c1d463e63243cfd790f99f99b2bd298b1
4 changes: 3 additions & 1 deletion tests/ui/wasm/simd-to-array-80108.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ pub struct Vector([i32; 4]);

impl Vector {
pub const fn to_array(self) -> [i32; 4] {
self.0
// This used to just be `.0`, but that was banned in
// <https://github.com/rust-lang/compiler-team/issues/838>
unsafe { std::mem::transmute(self) }
}
}