aboutsummaryrefslogtreecommitdiff
path: root/src/include/port/atomics/generic-xlc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/port/atomics/generic-xlc.h')
-rw-r--r--src/include/port/atomics/generic-xlc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/port/atomics/generic-xlc.h b/src/include/port/atomics/generic-xlc.h
index 92bba6f04fd..7a4c12ae6ca 100644
--- a/src/include/port/atomics/generic-xlc.h
+++ b/src/include/port/atomics/generic-xlc.h
@@ -32,7 +32,7 @@ typedef struct pg_atomic_uint32
#define PG_HAVE_ATOMIC_U64_SUPPORT
typedef struct pg_atomic_uint64
{
- volatile uint64 value;
+ volatile uint64 value __attribute__((__aligned__(8)));
} pg_atomic_uint64;
#endif /* __64BIT__ */