arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / multcmp-1.c
blobfb44cacde773446ea628c3838264c8d7c109750d
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
4 int
5 f (int m1, int m2, int c)
7 int d = m1 == m2;
8 int e = d * c;
9 return e;
12 /* { dg-final { scan-tree-dump-times "\\? c_\[0-9\]\\(D\\) : 0" 1 "optimized" } } */