XFAIL this test for Hexagon.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Thu, 11 May 2017 21:18:27 +0000 (21:18 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Thu, 11 May 2017 21:18:27 +0000 (21:18 +0000)
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

clang/test/CodeGenCXX/array-default-argument.cpp

index a07e390..a215c8f 100644 (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();