Mark some tests as XFAIL with GCC due to compiler bugs

llvm-svn: 258284
This commit is contained in:
Eric Fiselier 2016-01-20 04:06:46 +00:00
parent dfd6088c3f
commit 3f7c20747d
3 changed files with 12 additions and 0 deletions

View File

@ -9,6 +9,11 @@
// Can you have a catch clause of array type that catches anything?
// GCC incorrectly allows array types to be caught by reference.
// See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69372
// XFAIL: gcc
#include <cassert>
int main()

View File

@ -9,6 +9,10 @@
// Can you have a catch clause of array type that catches anything?
// GCC incorrectly allows function pointer to be caught by reference.
// See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69372
// XFAIL: gcc
#include <cassert>
template <class Tp>

View File

@ -7,6 +7,9 @@
//
//===----------------------------------------------------------------------===//
// GCC incorrectly allows PMF type "void (T::*)()" to be caught as "void (T::*)() const"
// See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69375
// XFAIL: gcc
#include <cassert>
struct A