summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/ia64-float80-2.c
blob: 629312425c2a7e5a068e685f623f365c72e22a30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Bug 14610 */
/* { dg-do run { target ia64-*-* } } */
/* { 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;
}