diff options
author | Justin Lebar <jlebar@google.com> | 2016-11-15 22:03:29 +0000 |
---|---|---|
committer | Justin Lebar <jlebar@google.com> | 2016-11-15 22:03:29 +0000 |
commit | 20cb82088045cfa67ae4874e660287aac56042a7 (patch) | |
tree | 80fbf8320d4e5c3680d16ebcb5b3931d898c27ca | |
parent | c9b27ba11d76430b6541e81a2ef8d992bf538526 (diff) | |
download | bcm5719-llvm-20cb82088045cfa67ae4874e660287aac56042a7.tar.gz bcm5719-llvm-20cb82088045cfa67ae4874e660287aac56042a7.zip |
[libcxx] Mark xonstexpr-fns.pass.cpp as XFAIL: gcc.
This fails with gcc because __builtin_isnan and friends, which
libcpp_isnan and friends call, are not themselves constexpr-evaluatable.
llvm-svn: 287041
-rw-r--r-- | libcxx/test/libcxx/numerics/c.math/constexpr-fns.pass.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcxx/test/libcxx/numerics/c.math/constexpr-fns.pass.cpp b/libcxx/test/libcxx/numerics/c.math/constexpr-fns.pass.cpp index 92b91036aa8..1419b6c9a0d 100644 --- a/libcxx/test/libcxx/numerics/c.math/constexpr-fns.pass.cpp +++ b/libcxx/test/libcxx/numerics/c.math/constexpr-fns.pass.cpp @@ -15,7 +15,11 @@ // constexpr-evaluatable, but that's what we check here, since we can't check // true constexpr-ness. // +// This fails with gcc because __builtin_isnan and friends, which libcpp_isnan +// and friends call, are not themselves constexpr-evaluatable. +// // UNSUPPORTED: c++98, c++03 +// XFAIL: gcc #include <cmath> |