- Refactored @simd implementation.

- Regression vector ABI: npot vectors would load incorrectly from pointers and other things. #2576
This commit is contained in:
Christoffer Lerno
2025-11-16 00:15:18 +01:00
parent 5f96b8e4c6
commit 4e66693065
77 changed files with 1152 additions and 1067 deletions

View File

@@ -3,7 +3,7 @@ module vecpointer @test;
fn void pointer_npot2_size()
{
int[<9>][3] a;
assert((usz)&a[1] - (usz)&a[0] == 64);
assert((usz)&a[1] - (usz)&a[0] == 9 * 4);
}
fn void pointer_add_sub_diff()