XFAIL this test for Hexagon.

It's failing due to Hexagon calling convention lowering being broken (empty
structs are not passed even if they have nontrivial destructors / copy ctors).

llvm-svn: 302825
This commit is contained in:
Richard Smith 2017-05-11 21:18:27 +00:00
parent 53877bc5b9
commit 74df05471e

View File

@ -1,6 +1,10 @@
// RUN: %clang_cc1 -emit-llvm -o - %s -triple %itanium_abi_triple | FileCheck %s
// RUN: %clang_cc1 -emit-llvm -o - %s -triple %itanium_abi_triple -std=c++98 -fexceptions -fcxx-exceptions | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-EH
// Hexagon calling convention lowering is horribly broken and fails to pass A
// object to B constructor at all!
// XFAIL: hexagon
struct A {
A();
~A();