PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / divmod-3.c
blob02aa367ac6ef84a7c16f732d43c50cd4b3e050af
1 /* { dg-require-effective-target divmod } */
2 /* { dg-options "-O2 -fdump-tree-widening_mul-details" } */
3 /* div comes before mod in same bb. */
5 typedef int SImode __attribute__((mode(SI)));
6 typedef unsigned USImode __attribute__((mode(SI)));
8 typedef int DImode __attribute__((mode(DI)));
9 typedef unsigned UDImode __attribute__((mode(DI)));
11 extern int cond;
12 void foo(void);
14 #define FOO(smalltype, bigtype, no) \
15 bigtype f_##no(smalltype x, bigtype y) \
16 { \
17 bigtype q = x / y; \
18 bigtype r = x % y; \
19 return q + r; \
22 FOO(SImode, DImode, 1)
23 FOO(SImode, UDImode, 2)
24 FOO(USImode, DImode, 3)
25 FOO(USImode, UDImode, 4)
26 FOO(DImode, DImode, 5)
27 FOO(DImode, UDImode, 6)
28 FOO(UDImode, UDImode, 7)
30 /* { dg-final { scan-tree-dump-times "DIVMOD" 7 "widening_mul" } } */