diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-03-25 14:30:12 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-03-25 14:30:12 +0000 |
| commit | eed1f754151965c4f9f7eef877801043101b83e1 (patch) | |
| tree | f4e9a1ae8d091a84685d2616b28002dd88e875c9 /scripts | |
| parent | 6bced6e4346370c747e4669685ad824706289244 (diff) | |
| download | rust-eed1f754151965c4f9f7eef877801043101b83e1.tar.gz rust-eed1f754151965c4f9f7eef877801043101b83e1.zip | |
Don't store vector types in ssa variables
They have been causing a lot of trouble. For example current MIR building thinks that it is fine to dynamically index into them. And there are different paths depending on if the repr(simd) struct uses fields or a single array as interior. There is also trouble with moving the inner array of a repr(simd) type that is an array wrapper. If performance becomes a concern, I will implement this in a more principled way.
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/test_rustc_tests.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/test_rustc_tests.sh b/scripts/test_rustc_tests.sh index 20dcb4cf34d..527a505ccc4 100755 --- a/scripts/test_rustc_tests.sh +++ b/scripts/test_rustc_tests.sh @@ -112,7 +112,6 @@ rm tests/incremental/spike-neg2.rs # same rm tests/ui/simd/intrinsic/generic-reduction-pass.rs # simd_reduce_add_unordered doesn't accept an accumulator for integer vectors -rm tests/ui/simd/intrinsic/generic-as.rs # crash when accessing vector type field (#1318) rm tests/ui/simd/simd-bitmask.rs # crash # bugs in the test suite |
