Skip f128 tests on powerpc64le
__addkf3 and __mulkf3 seem to hit a nondescript SIGILL. This is probably likely to just be another Qemu limitation.
This commit is contained in:
parent
f2092967cb
commit
21690f7320
1 changed files with 2 additions and 1 deletions
|
|
@ -24,9 +24,10 @@ fn main() {
|
|||
// FIXME(llvm): There is an ABI incompatibility between GCC and Clang on 32-bit x86.
|
||||
// See <https://github.com/llvm/llvm-project/issues/77401>.
|
||||
|| target.starts_with("i686")
|
||||
// 32-bit PowerPC gets code generated that Qemu cannot handle. See
|
||||
// 32-bit PowerPC and 64-bit LE gets code generated that Qemu cannot handle. See
|
||||
// <https://github.com/rust-lang/compiler-builtins/pull/606#issuecomment-2105635926>.
|
||||
|| target.starts_with("powerpc-")
|
||||
|| target.starts_with("powerpc64le-")
|
||||
// FIXME: We get different results from the builtin functions. See
|
||||
// <https://github.com/rust-lang/compiler-builtins/pull/606#issuecomment-2105657287>.
|
||||
|| target.starts_with("powerpc64-")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue