about summary refs log tree commit diff
path: root/tests/rustdoc-json/targets/aarch64_reflects_compiler_options.rs
blob: f91221eb23c657385cbf8880cb4a485f973417da (plain)
1
2
3
4
5
6
7
8
9
10
//@ only-aarch64

// If we enable SVE Bit Permute, we should see that it is enabled
//@ compile-flags: -Ctarget-feature=+sve2-bitperm
//@ is "$.target.target_features[?(@.name=='sve2-bitperm')].globally_enabled" true

// As well as its dependency chain
//@ is "$.target.target_features[?(@.name=='sve2')].globally_enabled" true
//@ is "$.target.target_features[?(@.name=='sve')].globally_enabled" true
//@ is "$.target.target_features[?(@.name=='neon')].globally_enabled" true