summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/divmod-3-simode.c
blob: 9dee5bf603b37a009d281f85767fe2da4f89abbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* { dg-require-effective-target divmod_simode } */
/* { dg-options "-O2 -fdump-tree-widening_mul-details" } */
/* div comes before mod in same bb.  */ 

typedef int SImode __attribute__((mode(SI)));
typedef unsigned USImode __attribute__((mode(SI)));

extern int cond;
void foo(void);

#define FOO(smalltype, bigtype, no)  	 \
bigtype f_##no(smalltype x, bigtype y)	 \
{					 \
  bigtype q = x / y;                     \
  bigtype r = x % y;                     \
  return q + r;                          \
}

FOO(SImode, SImode, 1)
FOO(SImode, USImode, 2)
FOO(USImode, USImode, 3)

/* { dg-final { scan-tree-dump-times "DIVMOD" 3 "widening_mul" } } */