File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -44,10 +44,8 @@ rm tests/ui/proc-macro/allowed-signatures.rs
44
44
rm tests/ui/proc-macro/no-mangle-in-proc-macro-issue-111888.rs
45
45
46
46
# vendor intrinsics
47
- rm tests/ui/sse2.rs # cpuid not supported, so sse2 not detected
47
+ rm tests/ui/sse2.rs # CodegenBackend::target_features not yet implemented
48
48
rm tests/ui/simd/array-type.rs # "Index argument for `simd_insert` is not a constant"
49
- rm tests/ui/simd/intrinsic/generic-bswap-byte.rs # simd_bswap not yet implemented
50
- rm tests/ui/simd/intrinsic/generic-arithmetic-pass.rs # many missing simd intrinsics
51
49
52
50
# exotic linkages
53
51
rm tests/ui/issues/issue-33992.rs # unsupported linkages
Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ impl CodegenBackend for CraneliftCodegenBackend {
186
186
}
187
187
188
188
fn target_features ( & self , _sess : & Session , _allow_unstable : bool ) -> Vec < rustc_span:: Symbol > {
189
- vec ! [ ]
189
+ vec ! [ ] // FIXME necessary for #[cfg(target_feature]
190
190
}
191
191
192
192
fn print_version ( & self ) {
You can’t perform that action at this time.
0 commit comments