aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vect/pr111764.c
blob: f4e110f3bbfc7bec0fc213a8ee621f89ea8d64d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "tree-vect.h"

short b = 2;

int main()
{
  check_vect ();

  for (int a = 1; a <= 9; a++)
    b = b * b;
  if (b != 0)
    __builtin_abort ();

  return 0;
}