xref: /llvm-project/clang/test/Sema/align-x86-64.c (revision adaf62ced2a106b9f16974f09ef6294583637288)
1 // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -fsyntax-only -verify %s
2 
3 // PR5637
4 
5 typedef __attribute__((aligned(16))) struct {
6   unsigned long long w[3];
7 } UINT192;
8 
9 UINT192 ten2mk192M[] = { // expected-error {{size of array element}}
10     {{0xcddd6e04c0592104ULL, 0x0fcf80dc33721d53ULL, 0xa7c5ac471b478423ULL}},
11     {{0xcddd6e04c0592104ULL, 0x0fcf80dc33721d53ULL, 0xa7c5ac471b478423ULL}},
12     {{0xcddd6e04c0592104ULL, 0x0fcf80dc33721d53ULL, 0xa7c5ac471b478423ULL}}
13 };
14 
15 short chk1[sizeof(ten2mk192M) == 80 ? 1 : -1];
16