blob: 8c285671321cc3ce39c5bd4ea512e6454e045084 (
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
29
30
31
32
33
34
35
36
37
38
|
/* PR rtl-optimization/88904 */
volatile int v;
__attribute__((noipa)) void
bar (const char *x, const char *y, int z)
{
if (!v)
__builtin_abort ();
asm volatile ("" : "+g" (x));
asm volatile ("" : "+g" (y));
asm volatile ("" : "+g" (z));
}
#define my_assert(e) ((e) ? (void) 0 : bar (#e, __FILE__, __LINE__))
typedef struct {
unsigned M1;
unsigned M2 : 1;
int : 0;
unsigned M3 : 1;
} S;
S
foo ()
{
S result = {0, 0, 1};
return result;
}
int
main ()
{
S ret = foo ();
my_assert (ret.M2 == 0);
my_assert (ret.M3 == 1);
return 0;
}
|