Skip to content

Commit c0ff7be

Browse files
committed
disable test on x86-32 since compiletest is not flexible enough to express where this test can run
1 parent 2571d50 commit c0ff7be

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

tests/codegen/simd-intrinsic/simd-intrinsic-transmute-array.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
//@ compile-flags: -C no-prepopulate-passes
33
// LLVM IR isn't very portable and the one tested here depends on the ABI
44
// which is different between x86 (where we use SSE registers) and others
5-
//@ revisions: x86-32 x86-64 other
6-
// The two x86 revisions are identical. Ideally we would say "x86-32 or x86-64" in a single revision
7-
// but compiletest does not permit that.
8-
//@[x86-32] only-x86
5+
//@ revisions: x86-64 other
6+
// FIXME: there should be an x86-32 revision, but that doesn't work since
7+
// compiletest cannot distinguish i686 from i586 targets, and those produce
8+
// different code since their ABI differs and the tests below inadvertantly
9+
// are also testing ABI details.
910
//@[x86-64] only-x86_64
1011
//@[other] ignore-x86
1112
//@[other] ignore-x86_64

0 commit comments

Comments
 (0)