summaryrefslogtreecommitdiffstats
path: root/polly/test/CodeGen/single_loop_int_max_iterations.c
blob: d102fbf5dd2ecf588c604c8a9e8cbc5d86200758 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#define N 20
#include "limits.h"

int main () {
  int i;
  int A[N];

  A[0] = 0;

  __sync_synchronize();

  for (i = 0; i < INT_MAX; i++)
    A[0] = i;

  __sync_synchronize();

  if (A[0] == INT_MAX - 1)
    return 0;
  else
    return 1;
}
OpenPOWER on IntegriCloud