From: Justin Lebar Date: Tue, 15 Nov 2016 22:03:29 +0000 (+0000) Subject: [libcxx] Mark xonstexpr-fns.pass.cpp as XFAIL: gcc. X-Git-Tag: llvmorg-4.0.0-rc1~4478 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=20cb82088045cfa67ae4874e660287aac56042a7;p=platform%2Fupstream%2Fllvm.git [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 --- 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 92b9103..1419b6c 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