It's failing due to Hexagon calling convention lowering being broken (empty
structs are not passed even if they have nontrivial destructors / copy ctors).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@302825
91177308-0d34-0410-b5e6-
96231b3b80d8
// 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();