[libcxx] Fix XFAIL for GCC 4.9

The XFAIL started passing since we're only testing for trivial-copyability of
reference_wrapper in C++14 and above. This commit constrains the XFAIL to
gcc-4.9 with C++14 (it would also fail on C++17 and above, but those standards
are not available with GCC 4.9).

llvm-svn: 347264
This commit is contained in:
Louis Dionne 2018-11-19 20:53:38 +00:00
parent e0ac069286
commit 70c4858892
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
// CopyAssignable, and TriviallyCopyable (starting in C++14).
// Test fails due to use of is_trivially_* trait.
// XFAIL: gcc-4.9
// XFAIL: gcc-4.9 && c++14
#include <functional>
#include <type_traits>