summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/struct/wo_prof_single_str_global.c
blob: 22193f2ae57c5f93167f496c3b960e25bf3a1354 (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

str_t str;

int
main ()
{
  int i;
  int res = 1<<(1<<N);
  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 "Number of structures to transform is 1" "ipa_struct_reorg" { xfail { "avr-*-*" } } } } */
/* { dg-final { cleanup-ipa-dump "*" } } */