We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffcd1c5 commit b4d7fcaCopy full SHA for b4d7fca
src/tests/JIT/opt/SVE/PredicateInstructions.cs
@@ -15,18 +15,21 @@ public class PredicateInstructions
15
[Fact]
16
public static void TestPredicateInstructions()
17
{
18
- ZipLow();
19
- ZipHigh();
20
- UnzipOdd();
21
- UnzipEven();
22
- TransposeOdd();
23
- TransposeEven();
24
- ReverseElement();
25
- And();
26
- BitwiseClear();
27
- Xor();
28
- Or();
29
- ConditionalSelect();
+ if (Sve.IsSupported)
+ {
+ ZipLow();
+ ZipHigh();
+ UnzipOdd();
+ UnzipEven();
+ TransposeOdd();
+ TransposeEven();
+ ReverseElement();
+ And();
+ BitwiseClear();
+ Xor();
30
+ Or();
31
+ ConditionalSelect();
32
+ }
33
}
34
35
[MethodImpl(MethodImplOptions.NoInlining)]
0 commit comments