forked from OSchip/llvm-project
Revert "[SystemZ][z/OS] Update target specific __attribute__((aligned)) value for test"
This reverts commit d91234b21c
.
Reviewed By: abhina.sreeskantharajan
Differential Revision: https://reviews.llvm.org/D107565
This commit is contained in:
parent
f8cdde7195
commit
91e3995195
|
@ -59,7 +59,7 @@ extern int e2[__alignof(struct as1) == 8 ? 1 : -1];
|
|||
struct __attribute__((aligned)) as1_2 {
|
||||
char c;
|
||||
};
|
||||
#if ((defined(__s390x__) && !defined(__MVS__)) || (defined(__ARM_32BIT_STATE) && !defined(__ANDROID__)))
|
||||
#if ( defined(__s390x__) || ( 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
|
||||
|
|
Loading…
Reference in New Issue