1 // RUN: %clang_cc1 -triple s390x-linux-gnu -O1 -emit-llvm %s -o - 2>&1 | FileCheck %s
3 // Test that an underaligned 16 byte __sync gives a warning.
7 __int128 Ptr
__attribute__((aligned(8)));
10 // CHECK: warning: __sync builtin operation MUST have natural alignment (consider using __atomic). [-Wsync-alignment]
11 return __sync_fetch_and_add(&Ptr
, 1);
15 // CHECK: warning: __sync builtin operation MUST have natural alignment (consider using __atomic). [-Wsync-alignment]
16 return __sync_sub_and_fetch(&Ptr
, 1);
20 // CHECK: warning: __sync builtin operation MUST have natural alignment (consider using __atomic). [-Wsync-alignment]
21 return __sync_val_compare_and_swap(&Ptr
, 0, 1);
25 // CHECK: warning: __sync builtin operation MUST have natural alignment (consider using __atomic). [-Wsync-alignment]
26 __sync_lock_release(&Ptr
);