aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr30338.c
blob: 2d6245d014d9c51afcd6881027103c2352fbcbd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* We used to do folding with mismatched types which caused us to
   infinitely loop in comparison foldings.  */

extern char *grub_scratch_mem;
int testload_func (char *arg, int flags)
{
  int i;
  for (i = 0; i < 0x10ac0; i++)
    if (*((unsigned char *) ((0x200000 + i + (int) grub_scratch_mem)))
        != *((unsigned char *) ((0x300000 + i + (int) grub_scratch_mem))))
      return 0;
  return 1;
}