diff options
author | Tim Northover <Tim.Northover@arm.com> | 2013-02-07 15:11:40 +0000 |
---|---|---|
committer | Tim Northover <Tim.Northover@arm.com> | 2013-02-07 15:11:40 +0000 |
commit | 8fa36ea24e097f98f8de2828dc44f092b05523d0 (patch) | |
tree | 439bdb75816b4fc8225fb8e39e0bb6e445765486 | |
parent | 55f05937a2946527c214259202cdc2f5b0cf125b (diff) |
XFAIL test that's inappropriate for AArch64 ABI
Only some ABIs require the "signext" attribute on parameters. On most
platforms, however, it's a useful test so it's best not to limit it to some
random arbitrary platform.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174619 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/2007-06-18-SextAttrAggregate.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/CodeGen/2007-06-18-SextAttrAggregate.c b/test/CodeGen/2007-06-18-SextAttrAggregate.c index 27ae6a9b76..f548951435 100644 --- a/test/CodeGen/2007-06-18-SextAttrAggregate.c +++ b/test/CodeGen/2007-06-18-SextAttrAggregate.c @@ -1,6 +1,14 @@ // RUN: %clang_cc1 %s -o - -emit-llvm | FileCheck %s +// XFAIL: aarch64 + // PR1513 +// AArch64 ABI actually requires the reverse of what this is testing: the callee +// does any extensions and remaining bits are unspecified. + +// Technically this test wasn't written to test that feature, but it's a +// valuable check nevertheless. + struct s{ long a; long b; |