XFAIL test that's inappropriate for AArch64 ABI
authorTim Northover <Tim.Northover@arm.com>
Thu, 7 Feb 2013 15:11:40 +0000 (15:11 +0000)
committerTim Northover <Tim.Northover@arm.com>
Thu, 7 Feb 2013 15:11:40 +0000 (15:11 +0000)
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.

llvm-svn: 174619

clang/test/CodeGen/2007-06-18-SextAttrAggregate.c

index 27ae6a9..f548951 100644 (file)
@@ -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;