mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
- Refactored @simd implementation.
- Regression vector ABI: npot vectors would load incorrectly from pointers and other things. #2576
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user