Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@
// REQUIRES: aspect-fp64
// UNSUPPORTED: target-amd || target-nvidia
// UNSUPPORTED-INTENDED: This test is intended for backends with SPIR-V support.

// DEFINE: %{mathflags} = %if cl_options %{/clang:-fno-fast-math%} %else %{-fno-fast-math%}
//
// RUN: %{build} -o %t.out
// RUN: %{build} %{mathflags} -o %t.out
Comment on lines +8 to +10
// RUN: %{run} %t.out

// NOTE: on Windows this test will fail with MSVC 2019 STL headers
// due to a bug in those headers.
Comment on lines +13 to +14

#include "exp-std-complex-edge-cases.hpp"

int main() { return test<double>(); }
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@
// UNSUPPORTED: target-amd || target-nvidia
// UNSUPPORTED-INTENDED: This test is intended for backends with SPIR-V support.
//
// RUN: %{build} -o %t.out
// DEFINE: %{mathflags} = %if cl_options %{/clang:-fno-fast-math%} %else %{-fno-fast-math%}
//
// RUN: %{build} %{mathflags} -o %t.out
// RUN: %{run} %t.out

// NOTE: on Windows this test will fail with MSVC 2019 STL headers
// due to a bug in those headers.
Comment on lines +12 to +13

#include "exp-std-complex-edge-cases.hpp"

int main() { return test<float>(); }
Loading