summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr23623.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/pr23623.c')
-rw-r--r--gcc/testsuite/gcc.dg/pr23623.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gcc.dg/pr23623.c b/gcc/testsuite/gcc.dg/pr23623.c
index 7ba1470182d..e076b600335 100644
--- a/gcc/testsuite/gcc.dg/pr23623.c
+++ b/gcc/testsuite/gcc.dg/pr23623.c
@@ -10,19 +10,19 @@ extern struct
{
unsigned int b : 1;
unsigned int : 31;
-} bf1;
+} __attribute__((aligned(4))) bf1;
extern volatile struct
{
unsigned int b : 1;
unsigned int : 31;
-} bf2;
+} __attribute__((aligned(4))) bf2;
extern struct
{
volatile unsigned int b : 1;
volatile unsigned int : 31;
-} bf3;
+} __attribute__((aligned(4))) bf3;
void writeb(void)
{