PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / fold-and-1.c
blobd555bb4b2d5263fbab350938e2d1e2637b53dbfb
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-cddce1" } */
4 int
5 fn1 (int x, int y)
7 int tem1 = x | y;
8 int tem2 = ~(x & y);
9 return tem1 & tem2;
12 int
13 fn2 (int x, int y)
15 int tem1 = y | x;
16 int tem2 = ~(x & y);
17 return tem1 & tem2;
20 int
21 fn3 (int x, int y)
23 int tem1 = x | y;
24 int tem2 = ~(y & x);
25 return tem1 & tem2;
28 int
29 fn4 (int x, int y)
31 int tem1 = y | x;
32 int tem2 = ~(y & x);
33 return tem1 & tem2;
36 int
37 fn5 (int x, int y)
39 int tem1 = ~(x & y);
40 int tem2 = x | y;
41 return tem1 & tem2;
44 int
45 fn6 (int x, int y)
47 int tem1 = ~(x & y);
48 int tem2 = y | x;
49 return tem1 & tem2;
52 int
53 fn7 (int x, int y)
55 int tem1 = ~(y & x);
56 int tem2 = x | y;
57 return tem1 & tem2;
60 int
61 fn8 (int x, int y)
63 int tem1 = ~(y & x);
64 int tem2 = y | x;
65 return tem1 & tem2;
68 /* { dg-final { scan-tree-dump-not " \\| " "cddce1" } } */
69 /* { dg-final { scan-tree-dump-not " \\& " "cddce1" } } */
70 /* { dg-final { scan-tree-dump-not "~" "cddce1" } } */