blob: d38431491342651a1a479b84f5a24534ec4d64a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* PR c++/25294 */
/* { dg-options "-std=gnu99" } */
/* Epiphany makes struct S 8-byte aligned. */
/* { dg-do run { target { ! epiphany-*-* } } } */
extern void abort (void);
struct S
{
char a[3];
#pragma pack(1) /* A block comment
that ends on the next line. */
struct T
{
char b;
int c;
} d;
#pragma pack /*/ */ () // C++ comment
int e;
} s;
int
main ()
{
if (sizeof (int) == 4 && sizeof (s) != 12)
abort ();
return 0;
}
|