Skip to content

Commit 5a9b81a

Browse files
committed
Re-enable a bunch of fixed rustc tests
1 parent 4a24ecc commit 5a9b81a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

scripts/test_rustc_tests.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,8 @@ rm tests/ui/proc-macro/allowed-signatures.rs
4444
rm tests/ui/proc-macro/no-mangle-in-proc-macro-issue-111888.rs
4545

4646
# 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
4848
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
5149

5250
# exotic linkages
5351
rm tests/ui/issues/issue-33992.rs # unsupported linkages

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ impl CodegenBackend for CraneliftCodegenBackend {
186186
}
187187

188188
fn target_features(&self, _sess: &Session, _allow_unstable: bool) -> Vec<rustc_span::Symbol> {
189-
vec![]
189+
vec![] // FIXME necessary for #[cfg(target_feature]
190190
}
191191

192192
fn print_version(&self) {

0 commit comments

Comments
 (0)