blob: 313af1080c1d293c5c9049b769ffae064ce0a810 (
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
|
/* { dg-do compile } */
/* { dg-do run } */
#include <stdlib.h>
typedef struct
{
int a;
int b;
}str_t;
#define N 3
int
main ()
{
int i;
int res = 1<<(1<<N);
str_t str;
str.a = 2;
for (i = 0; i < N; i++)
str.a = str.a * str.a;
if (str.a != res)
abort ();
/* POSIX ignores all but the 8 low-order bits, but other
environments may not. */
return (str.a & 255);
}
/*--------------------------------------------------------------------------*/
/* { dg-final { scan-ipa-dump "No structures to transform" "ipa_struct_reorg" { xfail *-*-* } } } */
/* { dg-final { cleanup-ipa-dump "*" } } */
|