[SystemZ][z/OS] Update target specific __attribute__((aligned)) value for test
authorFanbo Meng <fanbo.meng@ibm.com>
Fri, 9 Oct 2020 14:13:45 +0000 (10:13 -0400)
committerFanbo Meng <fanbo.meng@ibm.com>
Fri, 9 Oct 2020 14:14:44 +0000 (10:14 -0400)
z/OS defaults to 16 bytes for  __attribute__((aligned)), modify the test to differentiate between z/OS and Linux on s390x.

Reviewed By: abhina.sreeskantharajan

Differential Revision: https://reviews.llvm.org/D89127

clang/test/Sema/struct-packed-align.c

index 91c7ce3..122b7f2 100644 (file)
@@ -59,7 +59,7 @@ extern int e2[__alignof(struct as1) == 8 ? 1 : -1];
 struct __attribute__((aligned)) as1_2 {
     char c;
 };
-#if ( defined(__s390x__) || ( defined (__ARM_32BIT_STATE) && ! defined(__ANDROID__) ) )
+#if ((defined(__s390x__) && !defined(__MVS__)) || (defined(__ARM_32BIT_STATE) && !defined(__ANDROID__)))
 extern int e1_2[sizeof(struct as1_2) == 8 ? 1 : -1];
 extern int e2_2[__alignof(struct as1_2) == 8 ? 1 : -1];
 #else