aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/ia64/float80-2.c
blob: 346daa7bab2d68d1f733133f22838ff0836d0b39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Bug 14610 */
/* { dg-do run } */
/* { dg-options "-minline-int-divide-max-throughput" } */

extern void abort(void);
volatile int j = 30;

int main(void)
{
  if (29 % j != 29) abort();
  if (30 % j != 0)  abort();
  return 0;
}