diff options
author | Simon Atanasyan <simon@atanasyan.com> | 2018-11-13 18:14:29 +0000 |
---|---|---|
committer | Simon Atanasyan <simon@atanasyan.com> | 2018-11-13 18:14:29 +0000 |
commit | 9d87256d3de67f7a2e8f778ee775e0b6bb309aeb (patch) | |
tree | 6a172c556cbaa8366336eb28e0856822ed90ce2f | |
parent | 78d8b5e1cfa0485671de7812c5cfbb6eccf08116 (diff) | |
download | bcm5719-llvm-9d87256d3de67f7a2e8f778ee775e0b6bb309aeb.tar.gz bcm5719-llvm-9d87256d3de67f7a2e8f778ee775e0b6bb309aeb.zip |
[WebAssembly] Mark immediates.ll as XFAILed on MIPS hosts
Usually MIPS hosts uses a legacy (non IEEE 754-2008) encoding for NaNs.
Tests like `nan_f32` failed in attempt to compare hard-coded IEEE
754-2008 NaN value and a legacy NaN value provided by a system.
llvm-svn: 346773
-rw-r--r-- | llvm/test/CodeGen/WebAssembly/immediates.ll | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/WebAssembly/immediates.ll b/llvm/test/CodeGen/WebAssembly/immediates.ll index 0c96365102d..ee8833bc4b4 100644 --- a/llvm/test/CodeGen/WebAssembly/immediates.ll +++ b/llvm/test/CodeGen/WebAssembly/immediates.ll @@ -1,5 +1,10 @@ ; RUN: llc < %s -asm-verbose=false -disable-wasm-fallthrough-return-opt -wasm-keep-registers | FileCheck %s +; Usually MIPS hosts uses a legacy (non IEEE 754-2008) encoding for NaNs. +; Tests like `nan_f32` failed in attempt to compare hard-coded IEEE 754-2008 +; NaN value and a legacy NaN value provided by a system. +; XFAIL: mips-, mipsel-, mips64-, mips64el- + ; Test that basic immediates assemble as expected. target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128" |