[libcxx] Mark xonstexpr-fns.pass.cpp as XFAIL: gcc.
authorJustin Lebar <jlebar@google.com>
Tue, 15 Nov 2016 22:03:29 +0000 (22:03 +0000)
committerJustin Lebar <jlebar@google.com>
Tue, 15 Nov 2016 22:03:29 +0000 (22:03 +0000)
This fails with gcc because __builtin_isnan and friends, which
libcpp_isnan and friends call, are not themselves constexpr-evaluatable.

llvm-svn: 287041

libcxx/test/libcxx/numerics/c.math/constexpr-fns.pass.cpp

index 92b9103..1419b6c 100644 (file)
 // 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>