diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2017-05-11 21:18:27 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2017-05-11 21:18:27 +0000 |
commit | 74df05471ecca697e0da9c4d788339a6697740fa (patch) | |
tree | 41edd81fcecd14314a68b581a7be60ed7da1872f /clang/test/CodeGenCXX/array-default-argument.cpp | |
parent | 53877bc5b9c30f4ca868c2652ab2be760cf448ac (diff) | |
download | llvm-74df05471ecca697e0da9c4d788339a6697740fa.zip llvm-74df05471ecca697e0da9c4d788339a6697740fa.tar.gz llvm-74df05471ecca697e0da9c4d788339a6697740fa.tar.bz2 |
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
Diffstat (limited to 'clang/test/CodeGenCXX/array-default-argument.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/array-default-argument.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/array-default-argument.cpp b/clang/test/CodeGenCXX/array-default-argument.cpp index a07e3908..a215c8f 100644 --- a/clang/test/CodeGenCXX/array-default-argument.cpp +++ b/clang/test/CodeGenCXX/array-default-argument.cpp @@ -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(); |