Skip to content

Commit

Permalink
Revert "[SystemZ][z/OS] Update target specific __attribute__((aligned…
Browse files Browse the repository at this point in the history
…)) value for test"

This reverts commit d91234b.

Reviewed By: abhina.sreeskantharajan

Differential Revision: https://reviews.llvm.org/D107565
  • Loading branch information
fanbo-meng committed Aug 5, 2021
1 parent f8cdde7 commit 91e3995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/test/Sema/struct-packed-align.c
Expand Up @@ -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
Expand Down

0 comments on commit 91e3995

Please sign in to comment.