PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / mulcmp-1.c
blob6ff2ff5a388fbc0b1e7c81fcd65e6722ebcfefb6
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-optimized-raw" } */
4 int f(unsigned a,unsigned b){
5 a *= 3;
6 b *= 3;
7 return a == b;
10 /* { dg-final { scan-tree-dump-not "mult_expr" "optimized" } } */