1 // RUN: %clang_cc1 -triple=x86_64-pc-linux-gnu -Wover-aligned %s -isystem %S/Inputs -verify=precxx17 %std_cxx11-14
2 // RUN: %clang_cc1 -triple=x86_64-pc-linux-gnu -Wover-aligned %s -isystem %S/Inputs -verify %std_cxx17-
4 // expected-no-diagnostics
6 // This test ensures that we still get the warning even if we #include <new>
7 // where the header here simulates <new>.
8 #include <warn-new-overaligned-3.h>
13 struct SeparateCacheLines
{
15 } __attribute__((aligned(256)));
17 SeparateCacheLines
<int> high_contention_data
[10];
22 new Test
; // precxx17-warning {{type 'Test' requires 256 bytes of alignment and the default allocator only guarantees}}
23 new Test
[10]; // precxx17-warning {{type 'Test' requires 256 bytes of alignment and the default allocator only guarantees}}
28 struct helper
{ int i
__attribute__((aligned(256))); };